Update GitHub workflows for h3daemon release & tests #15
This file contains 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
name: Test h3daemon | |
on: | |
push: | |
branches: | |
- "**" | |
paths: | |
- h3daemon/** | |
- .github/workflows/test-h3daemon.yml | |
defaults: | |
run: | |
working-directory: h3daemon | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v5 | |
- name: Run tests | |
run: | | |
uv sync --all-extras --dev | |
uv run pytest |