We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 057f6c2 commit 5992e60Copy full SHA for 5992e60
.github/workflows/main.yml
@@ -72,3 +72,13 @@ jobs:
72
uses: taiki-e/install-action@cargo-hack
73
- name: Run check
74
run: cargo hack check --feature-powerset --all-targets --examples --bins --tests --target ${{ matrix.target }}
75
+
76
+ Clippy:
77
+ name: Clippy
78
+ runs-on: ubuntu-latest
79
+ steps:
80
+ - uses: actions/checkout@master
81
+ - name: Install Rust
82
+ run: rustup update stable && rustup default stable && rustup component add clippy
83
+ - name: Run Clippy
84
+ run: cargo clippy --all-targets --all-features -- -D warnings
0 commit comments