Skip to content

Commit

Permalink
#1622: Using Actions matrix build feature to also build on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jonashackt committed Feb 6, 2021
1 parent a4860c5 commit 39459a2
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build-feature.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ on:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest]

runs-on: ${{ matrix.os }}
steps:

- uses: actions/checkout@v2
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/build-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ on:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest]

runs-on: ${{ matrix.os }}
steps:

- uses: actions/checkout@v2
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/build-pullrequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ on:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest]

runs-on: ${{ matrix.os }}
steps:

- uses: actions/checkout@v2
Expand Down

0 comments on commit 39459a2

Please sign in to comment.