Skip to content

Commit

Permalink
build: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
klen committed Aug 7, 2023
1 parent 631696a commit a07f741
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,21 @@ jobs:

- name: Setup requirements
run: poetry install --with dev
if: matrix.python-version != 'pypy-3.10'

- name: Setup requirements pypy
run: |
poetry install
poetry install aiofile pytest pytest-aio
if: matrix.python-version == 'pypy-3.10'

- name: Check code
run: poetry run ruff muffin
if: matrix.python-version != 'pypy-3.10'

- name: Check typing
run: poetry run mypy
if: matrix.python-version != 'pypy-3.9'
if: matrix.python-version != 'pypy-3.10'

- name: Test with pytest
run: poetry run pytest tests
Expand Down

0 comments on commit a07f741

Please sign in to comment.