Skip to content

Commit

Permalink
ci: add features dimension to testing matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
dj8yf0μl committed Jun 27, 2024
1 parent 44580c0 commit e3a54c2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
jobs:
test:
runs-on: ${{ matrix.platform.os }}
name: "${{ matrix.platform.os }} ${{ matrix.platform.rs }}"
name: "${{ matrix.platform.os }} ${{ matrix.platform.rs }} ${{ matrix.features }}"
strategy:
matrix:
platform:
Expand All @@ -21,6 +21,7 @@ jobs:
rs: 1.76.0
- os: macos-latest
rs: 1.78.0
features: ['', '--features unstable,legacy']
steps:
- uses: actions/checkout@v3
- name: "${{ matrix.platform.rs }} with rustfmt, and wasm32"
Expand All @@ -38,7 +39,7 @@ jobs:
- name: print rustc && rustdoc version
run: rustc --version && rustdoc --version
- name: test
run: cargo test --all --features unstable,legacy
run: cargo test --all ${{ matrix.features }}
lint:
name: Clippy and fmt
runs-on: ubuntu-latest
Expand Down

0 comments on commit e3a54c2

Please sign in to comment.