Skip to content

feat: add mutation testing decision model #52

feat: add mutation testing decision model

feat: add mutation testing decision model #52

Workflow file for this run

name: rust
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
rust:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo fmt --check
- run: cargo clippy --all-targets --all-features -- -D warnings
- run: cargo test --all-targets
- run: cargo test --doc
- run: cargo bench --all-targets