Skip to content

Commit c9489e9

Browse files
committed
Make sure everything does the same thing
Signed-off-by: Šimon Brandner <[email protected]>
1 parent ee21552 commit c9489e9

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@ jobs:
2222
- run: rustc --version
2323
- run: rustup --version
2424
- run: rm -rf target
25-
- run: nix develop --command cargo fmt -- --check
26-
- run: |
27-
nix develop --command bash -c "export RUSTFLAGS='-D warnings' && cargo clean && cargo clippy"
28-
- run: |
29-
nix develop --command bash -c "export RUSTFLAGS='-D warnings' && cargo clean && cargo test"
25+
- run: nix develop --command bash -c "export RUSTFLAGS='-D warnings' && rm -rf target && cargo clean && cargo fmt -- --check"
26+
- run: nix develop --command bash -c "export RUSTFLAGS='-D warnings' && rm -rf target && cargo clean && cargo clippy"
27+
- run: nix develop --command bash -c "export RUSTFLAGS='-D warnings' && rm -rf target && cargo clean && cargo test"
3028
- run: nix build

0 commit comments

Comments
 (0)