Skip to content

Merge pull request #10 from mundialis/renovate/actions-checkout-digest #39

Merge pull request #10 from mundialis/renovate/actions-checkout-digest

Merge pull request #10 from mundialis/renovate/actions-checkout-digest #39

Workflow file for this run

name: Python Flake8 Code Quality
on:
- push
- pull_request
jobs:
flake8:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install
run: |
python -m pip install --upgrade pip
pip install flake8==3.8.4
- name: Run Flake8
run: |
flake8 --config=.flake8 --count --statistics --show-source --jobs=$(nproc) .