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 981785c commit ca471b2Copy full SHA for ca471b2
.github/workflows/ci.yml
@@ -73,3 +73,20 @@ jobs:
73
74
- name: Execute tests for all crates in the workspace
75
run: cargo test --all
76
+
77
+ clippy:
78
+ name: Lint code
79
+ runs-on: ubuntu-latest
80
+ steps:
81
82
+ - uses: actions/checkout@v3
83
84
+ - uses: actions-rs/toolchain@v1
85
+ with:
86
+ profile: minimal
87
+ components: clippy
88
89
+ - uses: actions-rs/clippy-check@v1
90
91
+ token: ${{ secrets.GITHUB_TOKEN }}
92
+ args: --all-features --all-targets --all
0 commit comments