Skip to content

Bump actions/checkout from 4 to 6 #32

Bump actions/checkout from 4 to 6

Bump actions/checkout from 4 to 6 #32

Workflow file for this run

name: Python CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "agent/python/uv.lock"
- name: Set up Python
run: uv python install
- name: Install dependencies
run: uv sync --all-groups
working-directory: agent/python
continue-on-error: true
- name: Type check with pyright
run: uv run --frozen pyright
working-directory: agent/python
continue-on-error: true
- name: Lint with ruff
run: uv run --frozen ruff check .
working-directory: agent/python
continue-on-error: true