fix: template rendered name for directory discovery #9
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: tests | |
on: | |
push: | |
branches: | |
- main | |
- '*.*.*' | |
pull_request: | |
branches: | |
- main | |
- '*.*.*' | |
jobs: | |
tests: | |
name: py${{ matrix.python }} unit tests | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python: | |
- '3.13' | |
- '3.12' | |
- '3.11' | |
- '3.10' | |
- '3.9' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
enable-cache: true | |
- name: Install Python ${{ matrix.python }} | |
run: uv python install ${{ matrix.python }} | |
- name: Run tests | |
run: uv run pytest --showlocals | |
minversions: | |
name: minimum dependency versions | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
enable-cache: true | |
- name: Install minimum dependencies | |
run: uv sync --resolution=lowest-direct | |
- name: Run tests | |
run: uv run pytest --showlocals | |
coverage: | |
name: coverage test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
enable-cache: true | |
- name: Install dependencies | |
run: uv sync | |
- name: Run tests | |
run: uv run pytest --cov --cov-fail-under=100 | |
style: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pre-commit/[email protected] | |
doc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
enable-cache: true | |
- name: Install dependencies | |
run: uv sync --group doc | |
- run: uv run sphinx-build doc build/sphinx/html |