Skip to content

0.3.0 release

0.3.0 release #23

Workflow file for this run

---
name: JSNAC TOX Suite
on: [push, pull_request]
jobs:
tox:
strategy:
matrix:
python-version: [ '3.11', '3.12', '3.13' ]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Run tox
run: uv run tox