Skip to content

inital commit: pre-commit hooks, lint checker, and a few files #1

inital commit: pre-commit hooks, lint checker, and a few files

inital commit: pre-commit hooks, lint checker, and a few files #1

Workflow file for this run

name: Check coding style
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
flake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install flake8
run: |
pip install flake8==4.0.1
- name: run flake8
run: |
flake8 . --count --show-source --statistics