Skip to content

⬆️ Bump mypy from 1.10.1 to 1.11.0 #70

⬆️ Bump mypy from 1.10.1 to 1.11.0

⬆️ Bump mypy from 1.10.1 to 1.11.0 #70

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: snok/install-poetry@v1
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install Dependencies
run: poetry install --only main,lint
- name: Lint
run: bash scripts/lint.sh