@@ -28,42 +28,48 @@ jobs:
28
28
with :
29
29
toolchain : ${{ env.RUST_TOOLCHAIN }}
30
30
# # run the cargo check steps with
31
- - name : Cargo Version
32
- id : cargo_version
31
+
32
+ # # this step fails on the unused imports
33
+ - name : Cargo Check (clarity)
34
+ # if: ${{ false }}
35
+ id : cargo_check_clarity
33
36
run : |
34
- cargo version
35
- # cargo 1.86.0 (adf9b6ad1 2025-02-28)
37
+ cargo check -p clarity --no-default-features
36
38
37
39
- name : Cargo Check
38
40
id : cargo_check
41
+ shell : bash
39
42
run : |
40
43
cargo check
41
44
42
45
- name : Cargo Check (monitoring_prom)
43
46
id : cargo_check_prom
47
+ shell : bash
44
48
run : |
45
49
cargo check --features monitoring_prom
46
50
47
- # # this step fails on the unused imports
48
- - name : Cargo Check (clarity)
49
- # if: ${{ false }}
50
- shell : bash -e
51
- id : cargo_check_clarity
52
- run : |
53
- cargo check -p clarity --no-default-features
51
+ # ## this step fails on the unused imports
52
+ # - name: Cargo Check (clarity)
53
+ # # if: ${{ false }}
54
+ # id: cargo_check_clarity
55
+ # run: |
56
+ # cargo check -p clarity --no-default-features
54
57
55
58
- name : Cargo Check (stacks-common)
56
59
id : cargo_check_stacks-common
60
+ shell : bash
57
61
run : |
58
62
cargo check -p stacks-common --no-default-features
59
63
60
64
- name : Dump constants JSON
61
65
id : consts-dump
66
+ shell : bash
62
67
run : |
63
68
cargo run --bin stacks-inspect -- dump-consts | tee out.json
64
69
65
70
- name : Compare expected constants JSON
66
71
id : expects-json
72
+ shell : bash
67
73
run : |
68
74
# if there is a diff, return will be non-zero
69
75
diff out.json ./sample/expected_consts.json >> $GITHUB_STEP_SUMMARY
0 commit comments