Skip to content

Do not bin profile evaluation percentages. #35

Do not bin profile evaluation percentages.

Do not bin profile evaluation percentages. #35

Workflow file for this run

name: Pylint
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
sparse-checkout: |
tests/
src/
- name: Set up Python 3.12
uses: actions/setup-python@v3
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')