Skip to content

Commit

Permalink
Merge pull request #301 from JohnTitor/test-stable-nightly
Browse files Browse the repository at this point in the history
Do not test on MSRV
  • Loading branch information
JohnTitor committed Oct 31, 2023
2 parents f89fca4 + 16f3639 commit ca45774
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
# MSRV and nightly
version: [1.61.0, nightly]
version: [1.61.0, stable, nightly]
steps:
- uses: actions/checkout@v3

Expand All @@ -31,6 +31,7 @@ jobs:
cargo fmt --all -- --check
- name: Run `cargo test` on workspace
if: matrix.version != '1.61.0'
run: cargo test --workspace --exclude=phf_codegen_test

- name: phf_macros UI test
Expand All @@ -39,6 +40,7 @@ jobs:
run: cargo test -- --ignored --test-threads=1

- name: phf_codegen test
if: matrix.version != '1.61.0'
run: cargo test -p phf_codegen_test

- name: no_std build check
Expand Down

0 comments on commit ca45774

Please sign in to comment.