Skip to content

Commit

Permalink
Update test action.
Browse files Browse the repository at this point in the history
  • Loading branch information
andialbrecht committed Aug 6, 2023
1 parent 8aa4715 commit 9a90474
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,29 @@ on:
- cron: '0 12 * * *'

jobs:
build:

runs-on: ubuntu-20.04 # keep it on 20.04 to have Python 3.5 and 3.6 available
test:
name: Run tests on ${{ matrix.py }}
runs-on: ubuntu-20.04 # keep it on 20.04 to have Python 3.6 available
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12-dev"]
py:
- "3.12.0-beta.4"
- "3.11"
- "3.10"
- "3.9"
- "3.8"
- "3.7"
- "3.6"
- "pypy-3.9"
- "pypy-3.8"
- "pypy-3.7"

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python ${{ matrix.py }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ matrix.py }}
check-latest: true
- name: Install dependencies
run: |
Expand Down

0 comments on commit 9a90474

Please sign in to comment.