async-graphql/.github/workflows/ci.yml

22 lines
408 B
YAML
Raw Normal View History

2020-03-01 13:56:14 +00:00
name: CI
on:
push:
branches:
- master
pull_request: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
2020-03-20 15:29:08 +00:00
- name: Check with clippy
run: cargo clippy
2020-03-20 15:32:02 +00:00
- name: Check format
run: cargo fmt --all -- --check
- name: Build
run: cargo build --all --verbose
2020-03-01 13:56:14 +00:00
- name: Run tests
run: cargo test --all --verbose