Skip to content

Migrated to uv

Migrated to uv #26

Workflow file for this run

name: Pylint
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade uv
uv sync
- name: Get changed files
id: changed-files
uses: tj-actions/[email protected]
- name: Analysing the code with pylint
run: |
for file in ${{ steps.changed-files.outputs.all_modified_files }}; do
if [[ -f $file && $file == *.py ]]
then
echo $file
uv run pylint $file
fi
done