add a git action

This commit is contained in:
GitMatt 2025-03-30 18:55:52 -07:00
parent aba1461a37
commit c2f2e5a0a5
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
name: tests
jobs:
uv-example:
name: python
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
# For example, using `pytest`
run: uv run pytest tests