Skip to content

feat: Add CI pipeline to test that scripts are running #1

feat: Add CI pipeline to test that scripts are running

feat: Add CI pipeline to test that scripts are running #1

Workflow file for this run

---
name: test
on:
push:
pull_request:
workflow_dispatch:
jobs:
export:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
enable-cache: True
- uses: actions/setup-python@v5
with:
python-version-file: .python-version
- run: uv sync --frozen
- run: uv run make
- run: git status
- run: git diff