Skip to content

Ensure mypy strict works, drop Python 3.7 #29

Ensure mypy strict works, drop Python 3.7

Ensure mypy strict works, drop Python 3.7 #29

Workflow file for this run

name: Linters
on:
pull_request:
paths-ignore:
- 'docs/**'
push:
paths-ignore:
- 'docs/**'
jobs:
flake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install flake8
run: python -m pip install flake8
- name: Execute flake8
uses: liskin/gh-problem-matcher-wrap@v1
with:
linters: flake8
run: flake8 signify --ignore=E128,W503 --max-line-length=120
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run mypy
uses: jpetrucciani/[email protected]