python 3.13 #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linting | |
on: [push] | |
jobs: | |
lint: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.14 | |
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/ | |