Skip to content

Commit

Permalink
Merge pull request #347 from lazka/ci-pypy-3.10
Browse files Browse the repository at this point in the history
CI: test with new PyPy
  • Loading branch information
lazka authored Oct 21, 2023
2 parents 4a8a6ed + 9b13f1e commit ee6427a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.8']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.10']
steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -117,20 +117,20 @@ jobs:
meson test -v -C _build
- name: Build & Test with poetry
if: ${{ matrix.python-version != 'pypy-3.8' }}
if: ${{ matrix.python-version != 'pypy-3.10' }}
run: |
git clean -xfdf
poetry install
poetry run python setup.py test
- name: Run linters
if: ${{ matrix.python-version != 'pypy-3.8' }}
if: ${{ matrix.python-version != 'pypy-3.10' }}
run: |
poetry run flake8
poetry run mypy .
- name: Build docs
if: ${{ matrix.python-version != 'pypy-3.8' }}
if: ${{ matrix.python-version != 'pypy-3.10' }}
run: |
poetry run python -m sphinx -W -a -E -b html -n docs docs/_build
Expand Down

0 comments on commit ee6427a

Please sign in to comment.