ci: add ci

This commit is contained in:
Oskar Thoren 2022-03-16 13:21:31 +08:00
parent 15c331db36
commit d82148d140
No known key found for this signature in database
GPG Key ID: B2ECCFD3BC2EF77E

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

@ -0,0 +1,40 @@
on:
push:
branches:
- master
pull_request:
name: Tests
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: cargo test
run: |
cargo test
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
- name: cargo fmt
run: cargo fmt --all -- --check
- name: cargo clippy
run: cargo clippy -- -D warnings