Skip to content

Commit

Permalink
Merge pull request #142 from actions/joshmgross/run-tests-on-windows
Browse files Browse the repository at this point in the history
Run test job on windows-latest
  • Loading branch information
joshmgross committed Apr 21, 2020
2 parents e715d9a + b1f2e78 commit 44c9c18
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,13 @@ jobs:
run: __tests__/verify-no-unstaged-changes.sh

test:
runs-on: ubuntu-latest
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest]
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v2
- name: Clear tool cache
Expand Down

0 comments on commit 44c9c18

Please sign in to comment.