We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdbb503 commit d561cccCopy full SHA for d561ccc
.github/workflows/rust.yml
@@ -9,7 +9,11 @@ on:
9
jobs:
10
11
check:
12
- runs-on: ubuntu-latest
+ strategy:
13
+ fail-fast: false
14
+ matrix:
15
+ os: [ubuntu-latest, windows-latest, macos-latest]
16
+ runs-on: ${{ matrix.os }}
17
steps:
18
- uses: actions/checkout@v4
19
- uses: dtolnay/rust-toolchain@stable
@@ -29,7 +33,11 @@ jobs:
29
33
30
34
test:
31
35
needs: [check]
32
36
37
38
39
40
41
42
43
- run: sudo apt-get update -y && sudo apt-get install -y knot-dnsutils
0 commit comments