Skip to content

Commit

Permalink
Always use 3.11 to run tox.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois committed Jan 5, 2024
1 parent 3924013 commit 833a252
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,37 +59,33 @@ jobs:
include:
- os: ubuntu-22.04
python-version: [3, 7]
tox-env-python: python3.7
- os: ubuntu-22.04
python-version: [3, 8]
tox-env-python: python3.8
- os: ubuntu-22.04
python-version: [3, 9]
tox-env-python: python3.9
- os: ubuntu-22.04
python-version: [3, 10]
tox-env-python: python3.10
- os: ubuntu-22.04
python-version: [3, 11]
tox-env-python: python3.11
- os: ubuntu-22.04
python-version: [3, 12]
tox-env-python: python3.11
- os: ubuntu-22.04
python-version: [3, 13, "0-alpha.2"]
tox-env-python: python3.11
- os: macos-12
python-version: [3, 12]
tox-env-python: python3.11
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python for tox
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Setup Python ${{ join(matrix.python-version, '.') }}
uses: actions/setup-python@v5
with:
python-version: "${{ join(matrix.python-version, '.') }}"
- name: Run Unit Tests
uses: pantsbuild/actions/run-tox@b16b9cf47cd566acfe217b1dafc5b452e27e6fd7
with:
python: ${{ matrix.tox-env-python }}
python: python3.11
tox-env: py${{ matrix.python-version[0] }}${{ matrix.python-version[1] }} -- -vvs

0 comments on commit 833a252

Please sign in to comment.