Skip to content

Commit

Permalink
Updated files with 'repo_helper'. (#94)
Browse files Browse the repository at this point in the history
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
  • Loading branch information
repo-helper[bot] authored Oct 1, 2024
1 parent dbf5fc4 commit 32ab3fa
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/mypy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,23 @@ jobs:
with:
python-version: "3.8"

- name: Install dependencies 🔧
- name: Install dependencies (Linux) 🔧
if: ${{ matrix.os == 'ubuntu-20.04' && steps.changes.outputs.code == 'true' }}
run: |
python -VV
python -m site
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
- name: Install dependencies (Windows) 🔧
if: ${{ matrix.os != 'ubuntu-20.04' && steps.changes.outputs.code == 'true' }}
run: |
python -VV
python -m site
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
choco install mingw -y
- name: "Run mypy"
if: steps.changes.outputs.code == 'true'
run: "python -m tox -e mypy -s false"

0 comments on commit 32ab3fa

Please sign in to comment.