-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Update version of cargo-mutants in use.
I removed `--locked` so it can pick up a newer version of `syn`, which will hopefully allow parsing `use` bounds.
- Loading branch information
Showing
2 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 . | ||
|
@@ -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: | | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|