This commit is contained in:
Simon Bihel 2021-12-20 16:48:29 +00:00 committed by GitHub
parent c37577f218
commit 9d725552e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

19
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: ci
on: push
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/checkout@master
- name: Build
run: cargo build --verbose
- name: Clippy
run: RUSTFLAGS="-Dwarnings" cargo clippy
- name: Fmt
run: cargo fmt -- --check