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.
2 parents e94503a + b0838e7 commit 40e9c57Copy full SHA for 40e9c57
.github/workflows/ci.yaml
@@ -69,7 +69,7 @@ jobs:
69
uses: actions-rs/clippy-check@v1
70
with:
71
token: ${{ secrets.GITHUB_TOKEN }}
72
- args: --workspace --all-features
+ args: --workspace --all-features --all-targets
73
74
ruby:
75
name: Lint and format Ruby
Rakefile
@@ -20,10 +20,7 @@ namespace :lint do
20
21
desc 'Lint Rust sources with Clippy'
22
task :clippy do
23
- FileList['**/{build,lib,main}.rs'].each do |root|
24
- FileUtils.touch(root)
25
- end
26
- sh 'cargo clippy --workspace --all-features'
+ sh 'cargo clippy --workspace --all-features --all-targets'
27
end
28
29
desc 'Lint Rust sources with Clippy restriction pass (unenforced lints)'
0 commit comments