We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3ccf064 + c42699d commit c64b8e4Copy full SHA for c64b8e4
.github/workflows/build.yml
@@ -247,3 +247,19 @@ jobs:
247
rustup component add rustfmt
248
- name: Run rustfmt checks
249
run: ci/rustfmt.sh
250
+
251
+ incremental-mutants:
252
+ runs-on: ubuntu-latest
253
+ steps:
254
+ - uses: actions/checkout@v3
255
+ with:
256
+ fetch-depth: 0
257
+ - name: Relative diff
258
+ run: |
259
+ git branch -av
260
+ git diff origin/main.. | tee git.diff
261
+ - uses: Swatinem/rust-cache@v2
262
+ - name: Mutants
263
264
+ cargo install cargo-mutants
265
+ cargo mutants --no-shuffle -j 2 -vV --in-diff git.diff
0 commit comments