Skip to content

i.hyper: fix Makefile #3850

i.hyper: fix Makefile

i.hyper: fix Makefile #3850

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.14"
# renovate: datasource=pypi depName=flake8
FLAKE8_VERSION: "7.3.0"
jobs:
flake8:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.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)" .