Skip to content

EREGCSC-2156 -- Refined policy repository results styling #2237

EREGCSC-2156 -- Refined policy repository results styling

EREGCSC-2156 -- Refined policy repository results styling #2237

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-20.04
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Run lint
run: |
pushd solution
make lint