Skip to content

Update supported Python versions + add workflows (#5) #6

Update supported Python versions + add workflows (#5)

Update supported Python versions + add workflows (#5) #6

Workflow file for this run

name: Build
on:
push:
branches: ["main"]
pull_request:
branches: ["*"]
workflow_dispatch:
permissions:
contents: read
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: |
pip install "tox>=4.5,<4.6"
- name: Run tox
run: |
tox --colored no --quiet