Skip to content

Add auto linter GH Actions #1

Add auto linter GH Actions

Add auto linter GH Actions #1

Workflow file for this run

name: Check for linting errors
on:
push:
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: pip install -r requirements.txt
- run: flake8
- run: black --check .