Skip to content

Bump version to 0.4.8 #61

Bump version to 0.4.8

Bump version to 0.4.8 #61

# This workflow will install tox and use it to run tests.
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Test
on:
push:
pull_request:
jobs:
test:
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"]
fail-fast: false
runs-on: 'ubuntu-24.04'
name: Test on python ${{ matrix.python }}
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
allow-prereleases: true
check-latest: true
- name: Install Tox
run: pip install tox
- name: Run Tox
# Run tox using the version of Python in `PATH`
run: tox -e py