Skip to content

build(deps): bump uuid from 1.22.0 to 1.23.2 #497

build(deps): bump uuid from 1.22.0 to 1.23.2

build(deps): bump uuid from 1.22.0 to 1.23.2 #497

Workflow file for this run

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