diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/main.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7f6e216..8685d1b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml | |||
| @@ -7,7 +7,10 @@ on: | |||
| 7 | 7 | ||
| 8 | jobs: | 8 | jobs: |
| 9 | test: | 9 | test: |
| 10 | runs-on: ubuntu-latest | 10 | strategy: |
| 11 | matrix: | ||
| 12 | os: [ubuntu-latest, windows-latest] | ||
| 13 | runs-on: ${{matrix.os}} | ||
| 11 | steps: | 14 | steps: |
| 12 | - uses: actions/checkout@v2.4.0 | 15 | - uses: actions/checkout@v2.4.0 |
| 13 | with: | 16 | with: |