Skip to content

Commit

Permalink
Make CI work properly with two different MSRVs
Browse files Browse the repository at this point in the history
  • Loading branch information
Ekleog committed Feb 5, 2023
1 parent 923ccee commit e08d670
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: [1.57.0, stable, beta, nightly]
rust: [1.57.0, 1.63.0, stable, beta, nightly]
os: [ubuntu-latest, macOS-latest]
# TODO add honggfuzz back
test: [unit-tests, libfuzzer, afl, examples-tests]
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ test_example:
--nocapture $(TEST_THREADS)

unit-tests:
@cargo test
@cargo test --features arbitrary
cargo test
if [ "$(cargo --version)" != "cargo 1.53.0" ]; then cargo test --features arbitrary; fi

test_fuzzers: $(FUZZERS)

Expand Down

0 comments on commit e08d670

Please sign in to comment.