We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b17bcb commit a2488aeCopy full SHA for a2488ae
1 file changed
.github/workflows/test.yml
@@ -10,7 +10,23 @@ env:
10
CARGO_TERM_COLOR: always
11
12
jobs:
13
- build:
+ lint:
14
+ runs-on: ubuntu-latest
15
+
16
+ steps:
17
+ - uses: actions/checkout@v4
18
19
+ - name: Clippy
20
+ run: |
21
+ rustup component add clippy
22
+ cargo clippy --all-targets --all-features
23
24
+ - name: Coverage
25
26
+ cargo install cargo-tarpaulin
27
+ cargo tarpaulin --all-targets --all-features --out stdout --engine llvm
28
29
+ test:
30
runs-on: ubuntu-latest
31
32
steps:
0 commit comments