Skip to content

Add workflow to lint with flake8 #1

Add workflow to lint with flake8

Add workflow to lint with flake8 #1

Workflow file for this run

name: lint
"on":
push:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Lint with flake8
run: |
flake8