Update tests.yml to run tests on multiple OS

This commit is contained in:
Stefan Zweifel 2021-09-26 11:07:08 +02:00
parent f6048aa2ac
commit 7f1665989e
1 changed files with 7 additions and 1 deletions

View File

@ -8,7 +8,13 @@ on:
jobs: jobs:
tests: tests:
runs-on: ubuntu-latest runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
name: Tests ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2