Skip to content

Commit

Permalink
Add reduced matrix of Python versions for testing wsgi dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
p3k committed Feb 10, 2024
1 parent 6ee4dc2 commit 05825b2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,23 @@ 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"]

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 05825b2

Please sign in to comment.