There was an error while loading. Please reload this page.
1 parent c3b2187 commit 5d919baCopy full SHA for 5d919ba
1 file changed
.github/workflows/ci.yml
@@ -57,9 +57,17 @@ jobs:
57
- run: cargo test
58
59
msrv:
60
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
61
+ strategy:
62
+ fail-fast: false
63
+ matrix:
64
+ os: [ubuntu-latest, windows-latest, macos-latest]
65
steps:
66
- uses: taiki-e/checkout-action@v1
- - name: Install cargo-hack
- uses: taiki-e/install-action@cargo-hack
- - run: cargo hack build --rust-version
67
+ - name: Install cargo-hack and cargo-minimal-versions
68
+ uses: taiki-e/install-action@v2
69
+ with:
70
+ tool: |
71
+ cargo-hack
72
+ cargo-minimal-versions
73
+ - run: cargo minimal-versions build --no-dev-deps --rust-version --workspace --feature-powerset
0 commit comments