py-scripts/lf_create_vap_cv.py flake8 removed # flake8: noqa #362
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: CI | |
on: [push, pull_request] | |
# Lint code using flake8 and run unit tests using pytest | |
jobs: | |
lint: | |
# Tie runner to Ubuntu 22.04 LTS, as it still supports Python 3.7 | |
# Minimum Python version on Ubuntu 24.04 LTS is Python 3.9. | |
runs-on: ubuntu-22.04 | |
name: Run Linter | |
steps: | |
- name: Check out source repository | |
uses: actions/checkout@v4 | |
- name: Set up Python environment | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.7" | |
- name: flake8 Lint | |
uses: py-actions/flake8@v2 | |
#with: | |
# plugins: "flake8-bugbear" |