Skip to content

Commit

Permalink
Fixup for OS selection in GitHub Actions unittests workflow (#628)
Browse files Browse the repository at this point in the history
  • Loading branch information
jayaddison committed Oct 10, 2022
1 parent 7d1cfad commit 754a316
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/unittests.yaml
Expand Up @@ -10,11 +10,18 @@ on:

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11.0-rc.1"]
exclude:
- os: macos-latest
python-version: "3.10"
- os: macos-latest
python-version: "3.11.0-rc.1"
- os: windows-latest
python-version: "3.11.0-rc.1"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python
Expand All @@ -28,8 +35,3 @@ jobs:
- name: Unittest and Coverage Report
run: |
python run_tests.py
- name: coveralls.io
uses: AndreMiras/coveralls-python-action@develop
with:
# coveralls repo token
github-token: "SmlfzlVJy4ow55rduU7IU5GmmFCfAdGeq"

0 comments on commit 754a316

Please sign in to comment.