Skip to content

build(deps): bump actions/setup-python from 6 to 7 #383

build(deps): bump actions/setup-python from 6 to 7

build(deps): bump actions/setup-python from 6 to 7 #383

Workflow file for this run

---
name: linting
"on":
push:
branches:
- main # Set a branch to deploy
pull_request:
jobs:
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
with:
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Set up Python
uses: actions/setup-python@v7
with:
python-version: '3.13'
- name: Running tests
run: |
python -m pip install --quiet --no-cache-dir --upgrade uv
uv run ruff check $(basename $(pwd) | sed -E 's/-/_/')
uv run ruff check tests