Skip to content

Commit

Permalink
Add GA build matrix for os and Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
clmould committed Nov 10, 2023
1 parent 35afe1d commit e39151d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ jobs:
build:

# we can also specify the OS to run tests on
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10"]

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

# a job is a seq of steps
steps:
Expand Down

0 comments on commit e39151d

Please sign in to comment.