Skip to content

Commit

Permalink
Merge pull request #382 from collective/niccokunzmann-4.x-py34-py35
Browse files Browse the repository at this point in the history
enable GitHub Actions for branch 4.x - py34+py35
  • Loading branch information
mauritsvanrees committed Aug 20, 2022
2 parents eb99b9c + d5d8685 commit 7e81e27
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,20 @@ jobs:
strategy:
matrix:
config:
# [Python version, tox env]
- ["2.7", "py27"]
- ["3.6", "py36"]
- ["3.7", "py37"]
- ["3.8", "py38"]
- ["3.9", "py39"]
- ["3.10", "py310"]
- ["pypy3", "pypy3"]
# [Python version, tox env, OS ]
# see for version: https://github.com/raw/actions/python-versions/main/versions-manifest.json
# see for runners: https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
- ["2.7", "py27", "ubuntu-latest"]
- ["3.4.10", "py34", "ubuntu-18.04"]
- ["3.5.10", "py35", "ubuntu-latest"]
- ["3.6", "py36", "ubuntu-latest"]
- ["3.7", "py37", "ubuntu-latest"]
- ["3.8", "py38", "ubuntu-latest"]
- ["3.9", "py39", "ubuntu-latest"]
- ["3.10", "py310", "ubuntu-latest"]
- ["pypy3", "pypy3", "ubuntu-latest"]

runs-on: ubuntu-latest
runs-on: ${{ matrix.config[2] }}
name: ${{ matrix.config[1] }}
steps:
- uses: actions/checkout@v2
Expand All @@ -45,7 +49,7 @@ jobs:
- name: Test
run: tox -e ${{ matrix.config[1] }}
- name: Coverage
if: matrix.config[0] != '2.7'
if: matrix.config[0] != '2.7' && matrix.config[0] != '3.4.10'
run: |
pip install coveralls coverage-python-version
coveralls --service=github
Expand Down

0 comments on commit 7e81e27

Please sign in to comment.