Skip to content

Commit 2be1d22

Browse files
committed
👷 fix ci
Signed-off-by: David Bernard <david.bernard.31@gmail.com>
1 parent b0df235 commit 2be1d22

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/ci.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,5 @@ jobs:
2323
- uses: jdx/mise-action@v2
2424
- run: just check
2525
- run: just lint
26-
- run: just test_each_feature
26+
- run: just test
27+
#- run: just test_each_feature

justfile

+5-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ _install_git-cliff:
2020
_install_cargo-hack:
2121
@just _binstall cargo-hack
2222

23+
_install_rustfmt_clippy:
24+
rustup component add rustfmt
25+
rustup component add clippy
26+
2327
# Format the code and sort dependencies
2428
format:
2529
cargo fmt
@@ -33,7 +37,7 @@ check: _install_cargo-hack
3337
cargo hack check --each-feature --no-dev-deps
3438

3539
# Lint the rust code
36-
lint:
40+
lint: _install_rustfmt_clippy
3741
cargo fmt --all -- --check
3842
cargo clippy --workspace --all-features --all-targets -- --deny warnings --allow deprecated --allow unknown-lints
3943

0 commit comments

Comments
 (0)