Skip to content

Commit 63d5ca4

Browse files
authored
ci: use cargo-hack (#4)
1 parent 12aeefa commit 63d5ca4

4 files changed

Lines changed: 3 additions & 9 deletions

File tree

.github/workflows/ci_check.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,11 @@ jobs:
3232
run: |
3333
rustup default nightly
3434
rustup component add clippy
35+
- uses: taiki-e/install-action@cargo-hack
3536
- name: Check clippy
3637
shell: bash
3738
run: |
38-
cargo clippy --all-features --all-targets -- -Dwarnings
39+
cargo hack clippy --feature-powerset --no-dev-deps -- -Dwarnings
3940
- name: Check Docs
4041
run: |
4142
cargo doc --all-features --no-deps

Cargo.lock

Lines changed: 0 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ rustdoc-args = ["--cfg", "docsrs"]
1414
futures = { version = "0.3.31", default-features = false, optional = true }
1515
event-listener = { version = "5.4.1", default-features = false, optional = true }
1616
local-event = { version = "0.1.1", default-features = false, optional = true }
17-
paste = "1.0.15"
1817
see = { version = "0.1.1", optional = true }
1918
slab = { version = "0.4.11", optional = true }
2019

flake.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
{
2828
devShells.default = mkShell {
2929
buildInputs = [
30+
cargo-hack
3031
(rust-bin.selectLatestNightlyWith (
3132
toolchain:
3233
toolchain.default.override {

0 commit comments

Comments
 (0)