Skip to content

Commit

Permalink
Fix GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
jayvdb committed Nov 27, 2022
1 parent 54a4a5d commit f5e093c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/py33.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,20 @@ on:
pull_request:

jobs:
py33:
# ubuntu-20+ doesnt support Python 3.3
oldpython3:
# ubuntu-20+ doesnt support Python 3.3 or 3.4
runs-on: ubuntu-18.04
strategy:
matrix:
python-version: [3.3]
name: py33
python-version: [3.3, 3.4]
name: oldpython3
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install tox==2.9.1 virtualenv==15.2.0
- run: tox -e py33
if: ${{ matrix.python-version == '3.3' }}
- run: tox -e py34
if: ${{ matrix.python-version == '3.4' }}
2 changes: 1 addition & 1 deletion .github/workflows/tox-gh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [2.7, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, '3.10']
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, '3.10']
name: main
steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit f5e093c

Please sign in to comment.