We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed9dcd4 commit ba12cb5Copy full SHA for ba12cb5
.github/workflows/tests.yaml
@@ -22,6 +22,29 @@ jobs:
22
toolchain: ${{ matrix.rust }}
23
override: true
24
25
+ - name: Install rustfmt + clippy
26
+ if: matrix.rust == 'stable'
27
+ uses: actions-rs/toolchain@v1
28
+ with:
29
+ profile: minimal
30
+ toolchain: ${{ matrix.rust }}
31
+ override: true
32
+ components: rustfmt, clippy
33
+
34
+ - name: Check Fmt
35
36
+ uses: actions-rs/cargo@v1
37
38
+ command: fmt
39
+ args: -- --check
40
41
+ - name: Check Lints (all features)
42
43
44
45
+ command: clippy
46
+ args: --tests --all-features
47
48
- name: Test (default features)
49
uses: actions-rs/cargo@v1
50
with:
0 commit comments