Skip to content
This repository has been archived by the owner on Feb 21, 2023. It is now read-only.

Commit

Permalink
Pip install setuptools before mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-Chen-Wang authored Jan 3, 2022
1 parent 9a7ce85 commit 7e47114
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,21 @@ jobs:
- name: Cache PyPI
uses: actions/[email protected]
with:
key: ${{ runner.os }}-pip-lint-${{ hashFiles('**/requirements.txt') }}
key: pip-lint-${{ hashFiles('**/requirements.txt') }}
path: ~/.cache/pip
restore-keys: |
${{ runner.os }}-pip-lint-
pip-lint-
- name: Install dependencies
uses: py-actions/py-dependency-install@v3
with:
path: tests/requirements.txt
- name: Run mypy
run: |
pip install -U setuptools
pip install -r tests/requirements-mypy.txt
mypy
- name: Run linter
run: |
pip install -U setuptools
make lint
- name: Prepare twine checker
run: |
Expand Down

0 comments on commit 7e47114

Please sign in to comment.