Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Update version of cargo-mutants in use. #548

Merged
merged 1 commit into from
Oct 31, 2024
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
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,9 @@ jobs:
# about caching the builds of them.
# cargo-mutants is not used in this step but it will be cached for later use.
run: |
cargo install --locked [email protected] [email protected] [email protected]
cargo install --locked [email protected] [email protected]
# Not locked so that we can have a newer `syn` than is in the lockfile
cargo install [email protected]


- run: df -h .
Expand Down Expand Up @@ -410,7 +412,8 @@ jobs:

# Install cargo-mutants
# This should usually be already installed, but is present in case of cache miss
- run: cargo install --locked [email protected]
# Not locked so that we can have a newer `syn` than is in the lockfile
- run: cargo install [email protected]

- name: Relative diff
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/mutants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ jobs:
run: rustup toolchain install stable --profile=minimal

- name: Install cargo-mutants
run: cargo install --locked [email protected]
# Not locked so that we can have a newer `syn` than is in the lockfile
run: cargo install [email protected]

- name: Run mutation testing for all-is-cubes
timeout-minutes: 60
Expand Down
Loading