summaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml21
1 files changed, 0 insertions, 21 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index b9e8dbf..1d7ca42 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -89,24 +89,3 @@ jobs:
python-version: ${{ env.LATEST_PY_VERSION }}
- name: Run style checks & linting
uses: pre-commit/action@v2.0.3
-
- # TODO: This section could be removed if the issues with the mypy pre-commit hook were resolved
- - uses: snok/install-poetry@v1.2
- with:
- version: 1.2.0a2
- virtualenvs-in-project: true
- - name: Cache python packages
- id: cache
- uses: actions/cache@v2
- with:
- path: .venv
- key: venv-${{ matrix.python-version }}-latest-${{ hashFiles('poetry.lock') }}
- - name: Install dependencies
- if: steps.cache.outputs.cache-hit != 'true'
- run: poetry install -v -E all
- - name: Run type checking
- run: >
- poetry run mypy
- --install-types --non-interactive
- --ignore-missing-imports
- requests_cache