Skip to content

Add Will and Alyssa to authors (#137) #386

Add Will and Alyssa to authors (#137)

Add Will and Alyssa to authors (#137) #386

Workflow file for this run

name: 🧪 Test
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
Tests:
name: test ${{ matrix.py }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os }}-${{ matrix.py }}
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
os:
- Ubuntu
- Windows
- MacOs
py:
- "3.13"
- "3.12"
- "3.11"
- "3.10"
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: "0.5.26"
enable-cache: true
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py }}
- name: Install dependencies
run: uv sync --all-extras --dev
- name: Run tests
run: uv run pytest