Skip to content

[pre-commit.ci] pre-commit autoupdate #135

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #135

Workflow file for this run

name: Pylint
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.12" ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- name: Install dependencies
run: |
uv pip install --system ".[test]"
uv pip install --system pylint
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')