Skip to content

Commit

Permalink
ci: Enable feature testing
Browse files Browse the repository at this point in the history
  • Loading branch information
polyfloyd committed Jun 26, 2024
1 parent 183e57b commit 61bebd5
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,20 @@ jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os:
- ubuntu-latest
- macos-latest
include:
- os: ubuntu-latest
args: --all-features


runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- run: rustup update
- run: cargo build
- run: cargo test
- run: cargo build ${{ matrix.args }}
- run: cargo test ${{ matrix.args }}

style:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 61bebd5

Please sign in to comment.