Skip to content

Commit

Permalink
Move Python 3.7 tests to Ubuntu 22.04
Browse files Browse the repository at this point in the history
  • Loading branch information
takluyver committed Jan 20, 2025
1 parent 7cc7d33 commit 9e5bb2c
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,33 @@ jobs:
strategy:
matrix:
platform: ["ubuntu-latest", "windows-latest"]
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" , "3.12", "3.13" ]
python-version: [ "3.8", "3.9", "3.10", "3.11" , "3.12", "3.13" ]
steps:
- uses: actions/checkout@v4

- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions codecov
- name: Run tests
run: tox

- name: Codecov upload
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: codecov

test-py37:
runs-on: "ubuntu-22.04"
strategy:
matrix:
python-version: [ "3.7", ]
steps:
- uses: actions/checkout@v4

Expand Down

0 comments on commit 9e5bb2c

Please sign in to comment.