Skip to content

Commit

Permalink
Merge pull request #615 from pypa/test-py36-older-ubuntu
Browse files Browse the repository at this point in the history
Use Ubuntu 20.04 to test on Python 3.6
  • Loading branch information
takluyver committed Dec 16, 2022
2 parents f5704ea + 1850f2c commit 310387f
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,31 @@ jobs:
strategy:
matrix:
platform: ["ubuntu-latest", "windows-latest"]
python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11-dev" ]
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11-dev" ]
steps:
- uses: actions/checkout@v3

- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
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
run: codecov

test-py36:
runs-on: "ubuntu-20.04"
strategy:
matrix:
python-version: [ "3.6", ]
steps:
- uses: actions/checkout@v3

Expand Down

0 comments on commit 310387f

Please sign in to comment.