Clarified error handling slightly, made sure to include a syntax erro… #44
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# 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" |