Skip to content

Commit

Permalink
github actions: test with no features
Browse files Browse the repository at this point in the history
  • Loading branch information
dermesser committed Apr 2, 2022
1 parent 2b8a1e4 commit e1cb3f9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ jobs:
build_and_test:
name: Rust project
runs-on: ubuntu-latest
strategy:
matrix:
features: ["full", ""]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand All @@ -14,4 +17,4 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: test
args: --features full
args: --features ${{ matrix.features }}

0 comments on commit e1cb3f9

Please sign in to comment.