Lint code after push by mhucka #43
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
# @file lint.yml | |
# @brief GitHub Actions workflow to run flake8 on codebase | |
# @author Michael Hucka <[email protected]> | |
# @license Please see the file named LICENSE in the repository | |
# @repo https://github.com/caltechlibrary/iga | |
name: Run linters on codebase | |
run-name: Lint code after ${{github.event_name}} by ${{github.actor}} | |
on: [push, pull_request] | |
jobs: | |
flake8-lint: | |
name: Run flake8 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out source repository | |
uses: actions/checkout@v3 | |
- name: Set up Python environment | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
cache: 'pip' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -r requirements-lint.txt | |
- name: Run flake8 | |
uses: TrueBrain/actions-flake8@v2 | |
with: | |
only_warn: 1 | |
extra_arguments: "--show-source --config=./.flake8 --extend-exclude=iga/vendor/,dev/,docs/,tests/" | |
plugins: flake8>=4.0.1 flake8-bugbear>=22.4.25 flake8-builtins>=1.5.3 flake8-comprehensions>=3.8.0 flake8-executable>=2.1.1 flake8_implicit_str_concat>=0.3.0 flake8-pie>=0.15.0 flake8-simplify>=0.19.2 |