Skip to content

Bump stefanzweifel/git-auto-commit-action from 4 to 5 #733

Bump stefanzweifel/git-auto-commit-action from 4 to 5

Bump stefanzweifel/git-auto-commit-action from 4 to 5 #733

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
checks:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install
run: |
python -m pip install -U pip
python -m pip install -U .[dev]
- name: black
run: black . --check --diff
- name: flake8
run: flake8 .
- name: mypy
run: mypy