Skip to content

Commit 8edb999

Browse files
committed
Don't run www tests on Windows
1 parent 01fc77a commit 8edb999

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/verify.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ name: Verify
22

33
on:
44
push:
5-
branches: v[3-9]
5+
branches:
6+
- v[3-9]
67
pull_request:
7-
branches: v[3-9]
8+
branches:
9+
- v[3-9]
810

911
permissions:
1012
contents: read
@@ -40,7 +42,7 @@ jobs:
4042

4143
- name: test (Windows)
4244
if: runner.os == 'Windows'
43-
run: deno task test
45+
run: deno test --allow-run --allow-write --allow-read --allow-env --allow-ffi --ignore=www
4446
shell: cmd
4547

4648
- name: test (Unix)

0 commit comments

Comments
 (0)