We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 285de26 + 22c2d04 commit a98e6e8Copy full SHA for a98e6e8
.github/workflows/rust.yml
@@ -15,13 +15,10 @@ jobs:
15
runs-on: ubuntu-latest
16
17
steps:
18
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
19
- name: Build
20
run: cargo build --verbose
21
- name: Run tests
22
run: cargo test --verbose
23
- name: Clippy
24
- uses: actions-rs/clippy-check@v1
25
- with:
26
- token: ${{ secrets.GITHUB_TOKEN }}
27
- args: --all-targets --all-features -- -D warnings
+ run: cargo clippy --message-format=json --all-targets --all-features -- -D warnings
0 commit comments