Skip to content

update readthedocs config (#15) #16

update readthedocs config (#15)

update readthedocs config (#15) #16

Workflow file for this run

name: lint
on:
push:
branches: [ main ]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Lint with flake8
run: |
flake8 . --count --max-line-length=99 --statistics