Skip to content

chore(deps): bump actions/download-artifact from 7.0.0 to 8.0.1 #2115

chore(deps): bump actions/download-artifact from 7.0.0 to 8.0.1

chore(deps): bump actions/download-artifact from 7.0.0 to 8.0.1 #2115

Workflow file for this run

name: Pylint
on: [push]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with:
python-version: '3.12'
- name: Install uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
with:
version: "latest"
- name: Install dependencies
run: |
uv sync --locked --all-extras
- name: Run pylint
run: |
uv run python -m pylint $(git ls-files '*.py')