Skip to content

chore: updating actions/checkout and adding setup-uv #1231

chore: updating actions/checkout and adding setup-uv

chore: updating actions/checkout and adding setup-uv #1231

Workflow file for this run

---
name: Python Linting
"on":
push:
branches:
- main
pull_request:
jobs:
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
activate-environment: "true"
github-token: ${{ github.token }}
- name: Running ruff
run: |
uv run ruff check $(basename $(pwd)) tests