Skip to content

trivial: re-format after formatter style changes #19

trivial: re-format after formatter style changes

trivial: re-format after formatter style changes #19

Workflow file for this run

name: Lint
on:
pull_request:
branches-ignore:
- 'master'
push:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup
run: |
pip install black mypy
pip install -r requirements.txt
mypy *.py formie > /dev/null || true
yes | mypy --install-types
- name: run black
run: |
black --check *.py $(find formie -name '*.py' | paste -s)
- name: run mypy
run: |
mypy --strict *.py formie