Skip to content

Commit fd342ca

Browse files
committed
Fix build workflows
1 parent f4cc0af commit fd342ca

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,24 @@ jobs:
2323
run: |
2424
MSRV=$(grep '^rust-version' Cargo.toml | cut -d '"' -f 2)
2525
echo "msrv=$MSRV" >> $GITHUB_OUTPUT
26+
2627
build:
2728
needs: prepare
2829
strategy:
2930
matrix:
3031
versions:
3132
- stable
3233
- ${{ needs.prepare.outputs.msrv }}
33-
runs-on: ubuntu-latest
34+
os:
35+
- ubuntu-latest
36+
- macos-latest
37+
- windows-latest
38+
exclude:
39+
- os: macos-latest
40+
versions: ${{ needs.prepare.outputs.msrv }}
41+
- os: windows-latest
42+
versions: ${{ needs.prepare.outputs.msrv }}
43+
runs-on: ${{ matrix.os }}
3444
steps:
3545
- uses: actions/checkout@v4
3646
- uses: dtolnay/rust-toolchain@master

0 commit comments

Comments
 (0)