Skip to content

update lint description #113

update lint description

update lint description #113

name: pre-commit hooks
on:
pull_request:
push: { branches: master }
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: set up python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: install pre-commit
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: run static analysis
run: |
pre-commit run --all-files