ci: setup

This commit is contained in:
Antoine Martin 2020-12-15 10:59:13 +01:00
parent ce37c1ee6f
commit 7730fdf0ea

24
.github/workflows/rust.yaml vendored Normal file
View file

@ -0,0 +1,24 @@
name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Lint
run: cargo clippy --verbose
- name: Build
run: cargo build --verbose
- name: Run tests
run: make check-all