Skip to content

Commit

Permalink
Fix ci trying to run mypy on pypy (#1065)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored May 1, 2022
1 parent 6e842f2 commit 31662b7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,22 +43,22 @@ jobs:
${{ matrix.venvcmd }}
pip install --upgrade -r requirements-dev.txt pytest-github-actions-annotate-failures
- name: Validate readme
if: ${{ runner.os == 'Linux' && matrix.python-version != 'pypy3' }}
if: ${{ runner.os == 'Linux' && matrix.python-version != 'pypy-3.7' }}
run: |
${{ matrix.venvcmd }}
python -m readme_renderer README.rst -o -
- name: Run flake8
if: ${{ runner.os == 'Linux' && matrix.python-version != 'pypy3' }}
if: ${{ runner.os == 'Linux' && matrix.python-version != 'pypy-3.7' }}
run: |
${{ matrix.venvcmd }}
make flake8
- name: Run mypy
if: ${{ runner.os == 'Linux' && matrix.python-version != 'pypy3' }}
if: ${{ runner.os == 'Linux' && matrix.python-version != 'pypy-3.7' }}
run: |
${{ matrix.venvcmd }}
make mypy
- name: Run black_check
if: ${{ runner.os == 'Linux' && matrix.python-version != 'pypy3' }}
if: ${{ runner.os == 'Linux' && matrix.python-version != 'pypy-3.7' }}
run: |
${{ matrix.venvcmd }}
make black_check
Expand Down

0 comments on commit 31662b7

Please sign in to comment.