Skip to content

black: add extra line #76

black: add extra line

black: add extra line #76

Workflow file for this run

name: Test
on:
push:
jobs:
test:
name: ${{ matrix.platform }} py${{ matrix.python-version }}
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
# platform: [ubuntu-latest, windows-latest, macos-latest]
platform: [ubuntu-latest, macos-latest]
python-version: ['3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Test with pytest
run: |
uv run --python ${{ matrix.python-version }} --extra dev pytest tests