diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 050e1e0..0bc4e5f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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