ok/jj
1
0
Fork 0
forked from mirrors/jj

github: add Clippy check to CI

This commit is contained in:
Martin von Zweigbergk 2021-03-23 10:30:05 -07:00
parent 53d1757994
commit 1941801055

View file

@ -27,3 +27,19 @@ jobs:
- name: Test
run: |
cargo test --workspace --verbose
clippy:
name: Clippy check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy
override: true
- run: rustup component add clippy
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features --workspace