Skip to content

Commit

Permalink
Merge pull request projectmesa#970 from rht/multi-os
Browse files Browse the repository at this point in the history
GA: Run on Windows and macOS
  • Loading branch information
Corvince authored Feb 18, 2021
2 parents 6a579bb + 4babab2 commit 299485e
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,18 @@ on:

jobs:
build:

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]

os: [windows-latest, ubuntu-latest, macos-latest]
python-version: [3.9]
include:
- os: ubuntu-latest
python-version: 3.6
- os: ubuntu-latest
python-version: 3.7
- os: ubuntu-latest
python-version: 3.8
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down

0 comments on commit 299485e

Please sign in to comment.