lxa_iobus: move the project from setup.py to pyproject.toml #8
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
name: flake8 | |
on: | |
pull_request: | |
paths: | |
- '**.py' | |
push: | |
branches: | |
- master | |
jobs: | |
python-flake: | |
name: Python Flake8 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: python3 -m pip install flake8 flake8-pyproject | |
- run: flake8 . |