Skip to content

Clarified error handling slightly, made sure to include a syntax erro… #44

Clarified error handling slightly, made sure to include a syntax erro…

Clarified error handling slightly, made sure to include a syntax erro… #44

Workflow file for this run

#
# Test the source for Black reformatting (pass/fail)
#
name: Linting
on: push
jobs:
flake8-black-lint:
runs-on: ubuntu-latest
name: Flake8 / Black code check
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- uses: py-actions/flake8@v2
with:
path: "./src"
plugins: "flake8-bugbear flake8-black"