Skip to content

Feat(RAP-16): Create & link Raptor's C++ library #50

Feat(RAP-16): Create & link Raptor's C++ library

Feat(RAP-16): Create & link Raptor's C++ library #50

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize, reopened]
branches: ["master", "main"]
paths:
- "**.py"
- "pyproject.toml"
- "uv.lock"
- ".github/workflows/**"
permissions:
contents: write
statuses: write
jobs:
python-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
persist-credentials: true
submodules: false
- name: Setup uv
run: |
chmod +x scripts/setup.sh
./scripts/setup.sh
- name: Install deps
run: uv sync
- name: Lint
run: uv run ruff check .
- name: Format check
run: uv run ruff format . --check