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 d5e173d commit 8f57e45Copy full SHA for 8f57e45
1 file changed
.github/workflows/verify.yaml
@@ -11,7 +11,11 @@ permissions:
11
12
jobs:
13
test:
14
- runs-on: ubuntu-latest
+ strategy:
15
+ matrix:
16
+ os: [ubuntu-latest, windows-latest, macos-latest]
17
+ runs-on: ${{ matrix.os }}
18
+ name: test ${{ matrix.os }}
19
20
steps:
21
- name: checkout
@@ -25,9 +29,11 @@ jobs:
25
29
deno-version: v2.x
26
30
27
31
- name: format
32
+ if: ${{ matrix.os == 'ubuntu-latest' }}
28
33
run: deno task fmt:check
34
35
- name: lint
36
37
run: deno lint
38
39
- name: build wasm
0 commit comments