Skip to content

Add full typing support, remove Python 3.7 support #31

Add full typing support, remove Python 3.7 support

Add full typing support, remove Python 3.7 support #31

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: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install mypy
run: python -m pip install mypy~=1.5.1 mscerts
- name: Execute mypy
uses: liskin/gh-problem-matcher-wrap@v1
with:
linters: mypy
run: mypy