Skip to content

Commit

Permalink
ci: use all-features
Browse files Browse the repository at this point in the history
  • Loading branch information
kolbma committed Dec 18, 2023
1 parent 4c5d75a commit 8955659
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: build
args: --verbose --release
args: --verbose --release --all-features

test-stable:
runs-on: ubuntu-latest
Expand All @@ -94,6 +94,21 @@ jobs:
command: test
args: --verbose

test-stable-all-features:
runs-on: ubuntu-latest
needs: test-stable

steps:
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
default: true
- uses: actions/checkout@v4
- uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --all-features

build-msrv:
runs-on: ubuntu-latest
needs: build-stable
Expand All @@ -107,9 +122,9 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: build
args: --verbose --release
args: --verbose --release --all-features

test-msrv:
test-msrv-all-features:
runs-on: ubuntu-latest
needs: build-msrv

Expand All @@ -122,4 +137,4 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: test
args: --verbose
args: --verbose --all-features

0 comments on commit 8955659

Please sign in to comment.