New M3's Tool-Agnostic Highly-Typed Architecture: Chaining-Method API Style #123
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
name: Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install UV and Python | |
uses: astral-sh/setup-uv@v5 | |
with: | |
version: "latest" | |
python-version: ${{ matrix.python-version }} | |
- name: Create virtual environment | |
run: uv venv | |
- name: Install dependencies | |
run: | | |
uv sync --all-groups | |
uv add pytest==7.4.3 | |
- name: Run tests | |
run: uv run pytest -v |