Skip to content

Commit

Permalink
Fix 'Github Actions' configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
lycantropos committed Apr 5, 2023
1 parent e3de095 commit 53db638
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ jobs:
steps:
- name: 'Checkout'
uses: actions/checkout@v3
- name: 'Setup Python'
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
architecture: ${{ matrix.platform.python_architecture }}
- name: 'Install in editable mode'
run: python -m pip -v install -e .[tests]
- name: 'Install Mypy'
Expand All @@ -64,11 +69,6 @@ jobs:
- name: 'Run Mypy'
run: python -m mypy ${{ github.event.repository.name }}
if: ${{ matrix.python_version != 'pypy-3.7' }}
- name: 'Setup Python'
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
architecture: ${{ matrix.platform.python_architecture }}
- name: 'Install coverage dependencies'
run: python -m pip install -U coverage[toml]
- name: 'Run doctests'
Expand Down

0 comments on commit 53db638

Please sign in to comment.