File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 23
23
- uses : jdx/mise-action@v2
24
24
- run : just check
25
25
- run : just lint
26
- - run : just test_each_feature
26
+ - run : just test
27
+ # - run: just test_each_feature
Original file line number Diff line number Diff line change @@ -20,6 +20,10 @@ _install_git-cliff:
20
20
_ install_cargo-hack :
21
21
@ just _binstall cargo-hack
22
22
23
+ _ install_rustfmt_clippy :
24
+ rustup component add rustfmt
25
+ rustup component add clippy
26
+
23
27
# Format the code and sort dependencies
24
28
format :
25
29
cargo fmt
@@ -33,7 +37,7 @@ check: _install_cargo-hack
33
37
cargo hack check --each-feature --no-dev-deps
34
38
35
39
# Lint the rust code
36
- lint :
40
+ lint : _install_rustfmt_clippy
37
41
cargo fmt --all -- --check
38
42
cargo clippy --workspace --all-features --all-targets -- --deny warnings --allow deprecated --allow unknown-lints
39
43
You can’t perform that action at this time.
0 commit comments