30
30
31
31
steps :
32
32
- id : check_packages_and_shards
33
- uses : stacks-network/actions/mutation-testing/check-packages-and-shards@feat/mutation-testing
33
+ uses : stacks-network/actions/stacks-core/ mutation-testing/check-packages-and-shards@main
34
34
35
35
# Mutation testing - Execute on PR on small packages that have functions modified (normal run, no shards)
36
36
pr-differences-mutants-small-normal :
44
44
45
45
steps :
46
46
- name : Run mutants on diffs
47
- uses : stacks-network/actions/mutation-testing/pr-differences@feat/mutation-testing
47
+ uses : stacks-network/actions/stacks-core/ mutation-testing/pr-differences@main
48
48
with :
49
49
package-dimension : " small"
50
50
65
65
66
66
steps :
67
67
- name : Run mutants on diffs
68
- uses : stacks-network/actions/mutation-testing/pr-differences@feat/mutation-testing
68
+ uses : stacks-network/actions/stacks-core/ mutation-testing/pr-differences@main
69
69
with :
70
70
shard : ${{ matrix.shard }}
71
71
package-dimension : " small"
85
85
env :
86
86
BITCOIND_TEST : 1
87
87
RUST_BACKTRACE : full
88
- uses : stacks-network/actions/mutation-testing/pr-differences@feat/mutation-testing
88
+ uses : stacks-network/actions/stacks-core/ mutation-testing/pr-differences@main
89
89
with :
90
90
package-dimension : " big"
91
91
@@ -109,7 +109,7 @@ jobs:
109
109
env :
110
110
BITCOIND_TEST : 1
111
111
RUST_BACKTRACE : full
112
- uses : stacks-network/actions/mutation-testing/pr-differences@feat/mutation-testing
112
+ uses : stacks-network/actions/stacks-core/ mutation-testing/pr-differences@main
113
113
with :
114
114
shard : ${{ matrix.shard }}
115
115
package-dimension : " big"
@@ -123,6 +123,7 @@ jobs:
123
123
if : always()
124
124
needs :
125
125
[
126
+ check-big-packages-and-shards,
126
127
pr-differences-mutants-small-normal,
127
128
pr-differences-mutants-small-shards,
128
129
pr-differences-mutants-big-normal,
@@ -131,4 +132,9 @@ jobs:
131
132
132
133
steps :
133
134
- name : Output Mutants
134
- uses : stacks-network/actions/mutation-testing/output-pr-mutants@feat/mutation-testing
135
+ uses : stacks-network/actions/stacks-core/mutation-testing/output-pr-mutants@main
136
+ with :
137
+ big_packages : ${{ needs.check-big-packages-and-shards.outputs.run_big_packages }}
138
+ shards_for_big_packages : ${{ needs.check-big-packages-and-shards.outputs.big_packages_with_shards }}
139
+ small_packages : ${{ needs.check-big-packages-and-shards.outputs.run_small_packages }}
140
+ shards_for_small_packages : ${{ needs.check-big-packages-and-shards.outputs.small_packages_with_shards }}
0 commit comments