Skip to content

Commit

Permalink
Revert to one-dimensional matrix; remove pypy versions for now
Browse files Browse the repository at this point in the history
  • Loading branch information
p3k committed Feb 10, 2024
1 parent 864f161 commit dd628d3
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,18 @@ jobs:

strategy:
matrix:
python-version: ["pypy3.9", "pypy3.10", "3.9", "3.10", "3.11", "3.12"]
wsgi-python-version: ["3.9", "3.10", "3.11", "3.12"]
# Unfortunately, the wsgi dependency fails with pypy versions
#python-version: ["pypy3.9", "pypy3.10", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4

- name: Setup Python ${{ matrix.python-version }}
if: ${{ !contains(github.ref, 'mod-wsgi-standalone') }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Setup Python ${{ matrix.python-version }}
if: ${{ contains(github.ref, 'mod-wsgi-standalone') }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.wsgi-python-version }}

- name: Install dependencies
run: make install

Expand Down

0 comments on commit dd628d3

Please sign in to comment.