Skip to content

Bump zipp from 3.8.1 to 3.19.1 #1508

Bump zipp from 3.8.1 to 3.19.1

Bump zipp from 3.8.1 to 3.19.1 #1508

Workflow file for this run

name: mypy checks
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
mypy:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry
poetry install --with dev
- name: Run mypy on all files
run: |
mkdir .mypy_cache
poetry run mypy --install-types --cache-dir .mypy_cache --non-interactive -p dftimewolf