Skip to content

exclude incorrect version information #28

exclude incorrect version information

exclude incorrect version information #28

Workflow file for this run

name: Linting
on: [push]
jobs:
lint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.13
- name: Install Linting Tools
run: |
python -m pip install --upgrade pip
pip install --user pylint==3.3.1
pip install --user black~=24.10
pip install --user flake8~=7.1
- name: Analysing the code with pylint
run: |
pip install --user -r tooling/requirements.txt
python -m pylint -E tooling/
- name: Checking format with Black
run: |
python -m black --check tooling/
- name: Checking format with Flake8
run: |
python -m flake8 tooling/