test. please ignore #24
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: VARIANT=byoc uv run make build |