We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7f7836 commit 675e2a4Copy full SHA for 675e2a4
1 file changed
.github/workflows/main.yml
@@ -12,6 +12,22 @@ concurrency:
12
cancel-in-progress: true
13
14
jobs:
15
+ run-clippy:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - id: checkout
19
+ uses: actions/checkout@v4
20
+ - name: Cache
21
+ uses: actions/cache@v4
22
+ with:
23
+ path: |
24
+ ~/.cargo/bin/
25
+ ~/.cargo/registry/index/
26
+ ~/.cargo/registry/cache/
27
+ ~/.cargo/git/db/
28
+ target/
29
+ key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
30
+ - run: cargo clippy --all-targets --all-features -- -D warnings
31
run-tests:
32
runs-on: ubuntu-latest
33
steps:
0 commit comments