Skip to content

Tweak for the testing workflow. #407

Tweak for the testing workflow.

Tweak for the testing workflow. #407

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install and setup uv
uses: hynek/setup-cached-uv@v2
- name: Test with tox
run: uvx --with tox-uv --with tox-gh-actions tox