Skip to content

Improve README: Add H1 title, language annotations, and clarity improvements #63

Improve README: Add H1 title, language annotations, and clarity improvements

Improve README: Add H1 title, language annotations, and clarity improvements #63

Workflow file for this run

name: tox
on:
push:
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
python-version: ${{ matrix.python-version }}
- name: setup tox
run: uv tool install tox --with tox-uv
- name: Test with tox
run: tox