Skip to content

Commit

Permalink
Create py33.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Feb 11, 2024
1 parent 7596801 commit a70af68
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/py33.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
on:
push:
pull_request:

jobs:
oldpython3:
# ubuntu-20+ doesnt support Python 3.3 or 3.4
runs-on: ubuntu-18.04
strategy:
matrix:
python-version: [3.3, 3.4]
name: oldpython3
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
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' }}

0 comments on commit a70af68

Please sign in to comment.