We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4cc0af commit fd342caCopy full SHA for fd342ca
1 file changed
.github/workflows/build.yml
@@ -23,14 +23,24 @@ jobs:
23
run: |
24
MSRV=$(grep '^rust-version' Cargo.toml | cut -d '"' -f 2)
25
echo "msrv=$MSRV" >> $GITHUB_OUTPUT
26
+
27
build:
28
needs: prepare
29
strategy:
30
matrix:
31
versions:
32
- stable
33
- ${{ needs.prepare.outputs.msrv }}
- 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
43
+ runs-on: ${{ matrix.os }}
44
steps:
45
- uses: actions/checkout@v4
46
- uses: dtolnay/rust-toolchain@master
0 commit comments