mirror of
https://github.com/martinvonz/jj.git
synced 2024-11-28 09:14:04 +00:00
github: add Clippy check to CI
This commit is contained in:
parent
53d1757994
commit
1941801055
1 changed files with 16 additions and 0 deletions
16
.github/workflows/build.yml
vendored
16
.github/workflows/build.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue