build(deps): bump uuid from 1.22.0 to 1.23.2 #497
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 馃К Mutation Testing (Gene Splicing) | |
| on: | |
| push: | |
| branches: [0.4.1] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| checks: write | |
| jobs: | |
| mutants: | |
| runs-on: ubuntu-latest | |
| continue-on-error: true | |
| defaults: | |
| run: | |
| working-directory: src/verified | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@nightly | |
| - name: Install cargo-mutants | |
| run: cargo install cargo-mutants || true | |
| working-directory: . | |
| continue-on-error: true | |
| - name: Hunt Mutants | |
| run: | | |
| if command -v cargo-mutants &>/dev/null; then | |
| cargo mutants --timeout 300 -- --all-features | |
| else | |
| echo "cargo-mutants not available, skipping" | |
| fi | |
| continue-on-error: true |