Skip to content

Commit

Permalink
Add CI jobs to test the crates on the Rust beta branch (#108)
Browse files Browse the repository at this point in the history
* Add CI jobs to test the crates on the Rust beta branch

* Remove install of unused library
  • Loading branch information
JSorngard authored Jan 31, 2025
1 parent 31ef9a0 commit a4ee14f
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,3 +119,36 @@ jobs:
- uses: actions/checkout@v4
- name: Check semver
uses: obi1kenobi/cargo-semver-checks-action@v2

beta_test_codec:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@beta
- uses: taiki-e/install-action@v2
with:
tool: cargo-all-features
- name: Test the codec crate on rust beta
run: cargo test-all-features --n-chunks 3 --chunk 1

beta_test_common:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@beta
- uses: taiki-e/install-action@v2
with:
tool: cargo-all-features
- name: Test the common crate on rust beta
run: cargo test-all-features --n-chunks 3 --chunk 2

beta_test_macro:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@beta
- uses: taiki-e/install-action@v2
with:
tool: cargo-all-features
- name: Test the macro crate on rust beta
run: cargo test-all-features --n-chunks 3 --chunk 3

0 comments on commit a4ee14f

Please sign in to comment.