Skip to content

cronjobs: expand script to run stand-alone #2907

cronjobs: expand script to run stand-alone

cronjobs: expand script to run stand-alone #2907

Workflow file for this run

---
name: Python Flake8 Code Quality
on:
push:
branches:
- grass[0-9]+
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress:
# Do not cancel on protected branches, like grass8
${{ github.ref_protected != true }}
permissions: {}
env:
# renovate: datasource=python-version depName=python
PYTHON_VERSION: "3.12"
# renovate: datasource=pypi depName=flake8
FLAKE8_VERSION: "7.1.1"
jobs:
flake8:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Set up Python
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install
run: |
python -m pip install --upgrade pip pipx
pipx install flake8==${{ env.FLAKE8_VERSION }}
- name: Run Flake8
run: |
flake8 --count --statistics --show-source --jobs="$(nproc)" .