Skip to content

feature(rules): add user name and groups to rules context #906

feature(rules): add user name and groups to rules context

feature(rules): add user name and groups to rules context #906

Workflow file for this run

name: "🐍 Linter"
on:
push:
branches: [main]
paths:
- "**.py"
pull_request:
branches: [main]
paths:
- "**.py"
env:
PROJECT_FOLDER: "qgis_deployment_toolbelt"
PYTHON_VERSION: "3.10"
jobs:
lint-ubuntu:
runs-on: ubuntu-22.04
steps:
- name: Get source code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: "pip"
cache-dependency-path: "requirements/development.txt"
- name: Install requirements
run: |
python -m pip install -U pip setuptools wheel
python -m pip install -U -r requirements/development.txt
- name: Lint with flake8
run: |
flake8 ${{ env.PROJECT_FOLDER }} --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 ${{ env.PROJECT_FOLDER }} --count --exit-zero --statistics