Skip to content

test. please ignore #19

test. please ignore

test. please ignore #19

Workflow file for this run

on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
run: pip install uv
- name: Cache UV
id: cache-uv
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('pyproject.toml') }}
restore-keys: venv-${{ runner.os }}-${{ hashFiles('pyproject.toml') }}
- name: Astral UV sync
if: steps.cache-uv.outputs.cache-hit != 'true'
run: uv sync
- name: Build
run: uv run make build