Skip to content

Commit

Permalink
Run CI unittest also on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
AljenU committed Nov 25, 2021
1 parent 6369673 commit e51ae7c
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/aa_unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ jobs:
name: Run all tests that do NOT have the Large tag

# The type of runner that the job will run on
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
# Multi-platform job version
os: [ubuntu-latest, windows-latest]

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down Expand Up @@ -86,7 +90,11 @@ jobs:
name: Run all tutorial tests with only a minimal parameter xml / tools install

# The type of runner that the job will run on
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
# Multi-platform job version
os: [ubuntu-latest, windows-latest]

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down

0 comments on commit e51ae7c

Please sign in to comment.