Skip to content

build(deps-dev): bump urllib3 from 2.2.1 to 2.2.2 in the pip group across 1 directory #18

build(deps-dev): bump urllib3 from 2.2.1 to 2.2.2 in the pip group across 1 directory

build(deps-dev): bump urllib3 from 2.2.1 to 2.2.2 in the pip group across 1 directory #18

Workflow file for this run

name: Mypy Linting
on:
push:
branches: [ "main" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
schedule:
- cron: '38 2 * * 4'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Analyzing the code with mypy
run: |
poetry run mypy --explicit-package-bases app tests