Skip to content

Bump actions/download-artifact from 7 to 8 #264

Bump actions/download-artifact from 7 to 8

Bump actions/download-artifact from 7 to 8 #264

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.13t"
- "3.14"
- "3.14t"
- "pypy3.9"
- "pypy3.10"
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install -U pip 'setuptools>=45'
- name: Run tests
run: |
python setup.py build_ext --inplace
python -m unittest discover -vv tests
./bench.sh