@@ -32,40 +32,23 @@ jobs:
32
32
id : cargo_check
33
33
run : |
34
34
cargo check
35
- # cargo check --features monitoring_prom
36
- # cargo check -p clarity --no-default-features
37
- # cargo check -p stacks-common --no-default-features
38
35
39
36
- name : Cargo Check (monitoring_prom)
40
37
id : cargo_check_prom
41
38
run : |
42
- # cargo check
43
39
cargo check --features monitoring_prom
44
- # cargo check -p clarity --no-default-features
45
- # cargo check -p stacks-common --no-default-features
46
40
47
41
# # this step fails on the unused imports
48
42
- name : Cargo Check (clarity)
49
43
if : ${{ false }}
50
44
id : cargo_check_clarity
51
45
run : |
52
- # cargo check
53
- # cargo check --features monitoring_prom
54
46
cargo check -p clarity --no-default-features
55
- # cargo check -p stacks-common --no-default-features
56
47
57
48
- name : Cargo Check (stacks-common)
58
49
id : cargo_check_stacks-common
59
50
run : |
60
- # cargo check
61
- # cargo check --features monitoring_prom
62
- # cargo check -p clarity --no-default-features
63
51
cargo check -p stacks-common --no-default-features
64
- # # end cargo test
65
- # - name: Build stacks-inspect
66
- # id: build_stacks-inspect
67
- # run: |
68
- # cargo build --bin stacks-inspect
69
52
70
53
- name : Dump constants JSON
71
54
id : consts-dump
76
59
id : expects-json
77
60
run : |
78
61
# if there is a diff, return will be non-zero
62
+ echo "asdf" >> out.json ## induce a diff
79
63
diff out.json ./sample/expected_consts.json >> $GITHUB_STEP_SUMMARY
0 commit comments