Skip to content

Commit

Permalink
ci: test try python-version matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
ktmeaton committed Jul 25, 2024
1 parent 26d2a86 commit 475f6e0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ jobs:
# linux
- os: ubuntu-latest
arch: linux
python-version: "3.9"
python-version: ["3.7", "3.9"]
# windows
- os: windows-latest
arch: windows
python-version: "3.9"
python-version: ["3.7", "3.9"]
# macOS
- os: macos-latest
arch: macos
python-version: "3.9"
python-version: ["3.7", "3.9"]
# # docker
# - os: ubuntu-latest
# arch: docker
Expand All @@ -46,6 +46,7 @@ jobs:
uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
if: ${{ matrix.arch != 'docker' }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
Expand Down

0 comments on commit 475f6e0

Please sign in to comment.