Skip to content

Commit

Permalink
Rewrite github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
svenhofstede committed Feb 24, 2024
1 parent 7dd2927 commit cdcab34
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,23 @@ on:

jobs:
test:
name: test with ${{ matrix.py }} on ubuntu-latest
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python-version: '3.10'
py:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- 'pypy-3.8'
steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ matrix.py }}

- name: Install tox
run: pip install tox
Expand Down

0 comments on commit cdcab34

Please sign in to comment.