Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,24 @@ jobs:
exit 1
fi

mutants-treasury:
runs-on: ubuntu-latest
if: github.event_name == 'workflow_dispatch'
steps:
- uses: actions/checkout@v4

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.95.0"
targets: wasm32-unknown-unknown

- name: Install cargo-mutants
run: cargo install cargo-mutants

- name: Run treasury mutation tests
run: cargo mutants --package comebackhere-treasury --timeout 60 --test-threads 1 --in-place --no-shuffle --list-test-cases --exclude "contracts/treasury/tests/" || true

# Non-blocking early-warning job: runs the same suite against whatever
# Rust currently reports as "stable", so a breakage caused by an upcoming
# toolchain bump surfaces here before rust-toolchain.toml is ever touched.
Expand Down
Loading
Loading