Skip to content

Commit

Permalink
add a default-features build to the GitHub actions build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
mostthingsweb committed Jan 29, 2022
1 parent 63edd34 commit fe7543b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
rust: [stable, beta]
features: [--all-features, ]
exclude:
- os: macos-latest
rust: beta
Expand All @@ -29,15 +30,15 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: build
args: --workspace --all-targets
args: --workspace --all-targets ${{ matrix.features }}
- uses: actions-rs/cargo@v1
with:
command: test
args: --workspace
- uses: actions-rs/cargo@v1
with:
command: test
args: --workspace --all-features
args: --workspace ${{ matrix.features }}

lint:
runs-on: ubuntu-latest
Expand Down

0 comments on commit fe7543b

Please sign in to comment.