Skip to content

chore(ci): add flake8 lint workflow and fix minor lint issue #1

chore(ci): add flake8 lint workflow and fix minor lint issue

chore(ci): add flake8 lint workflow and fix minor lint issue #1

Workflow file for this run

name: Lint (flake8)
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "**" ]
jobs:
flake8:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Install flake8
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Run flake8
run: |
flake8 .