Skip to content

EREGCSC-2729 - Usable and consistent admin lists #3975

EREGCSC-2729 - Usable and consistent admin lists

EREGCSC-2729 - Usable and consistent admin lists #3975

Workflow file for this run

name: Python-Lint
on:
pull_request:
types: [ opened, synchronize, reopened ]
paths:
- '**.py'
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Run lint
run: |
pushd solution
make lint