Skip to content

Commit

Permalink
Run CI on all operating systems
Browse files Browse the repository at this point in the history
Closes #309
  • Loading branch information
hinerm committed Jul 23, 2024
1 parent 786a58b commit d271ca8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@ on:
- "*-[0-9]+.*"

jobs:
build:
runs-on: ubuntu-latest
define-matrix:

This comment has been minimized.

Copy link
@imagejan

imagejan Jul 24, 2024

Member

I'd find build as the name for the GitHub Actions job more intuitive than define-matrix.

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v2
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@ on:
- master

jobs:
build:
runs-on: ubuntu-latest
define-matrix:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit d271ca8

Please sign in to comment.