Skip to content

Commit 44c9c18

Browse files
authored
Merge pull request #142 from actions/joshmgross/run-tests-on-windows
Run test job on windows-latest
2 parents e715d9a + b1f2e78 commit 44c9c18

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/workflow.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,13 @@ jobs:
2828
run: __tests__/verify-no-unstaged-changes.sh
2929

3030
test:
31-
runs-on: ubuntu-latest
31+
runs-on: ${{ matrix.operating-system }}
32+
strategy:
33+
matrix:
34+
operating-system: [ubuntu-latest, windows-latest]
35+
defaults:
36+
run:
37+
shell: bash
3238
steps:
3339
- uses: actions/checkout@v2
3440
- name: Clear tool cache

0 commit comments

Comments
 (0)