Skip to content

Commit

Permalink
Specify PyPy version
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Oct 5, 2023
1 parent 425c7a7 commit 5e0431d
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,16 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', 'pypy3.9'] # , '3.12-dev'
include:
# TODO: revert this to simple version array
- python-version: '3.8'
- python-version: '3.9'
- python-version: '3.10'
- python-version: '3.11'
- python-version: 'pypy3.9'
full-version: 'pypy3.9-7.3.11'
# - python-version: '3.12'
# full-version: '3.12-dev'
fail-fast: false
services:
nginx:
Expand All @@ -30,7 +39,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ matrix.full-version || matrix.python-version }}
- uses: snok/install-poetry@v1.3
with:
virtualenvs-in-project: true
Expand Down

0 comments on commit 5e0431d

Please sign in to comment.