Skip to content

Merge pull request #500 from Upsonic/version-0.69.2 #208

Merge pull request #500 from Upsonic/version-0.69.2

Merge pull request #500 from Upsonic/version-0.69.2 #208

Workflow file for this run

name: Unit Tests
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "latest"
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: |
uv sync --all-extras
- name: Run unit tests
run: |
uv run pytest tests/unit_tests