Skip to content

cleanup

cleanup #397

Workflow file for this run

name: Test
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: [
"3.14-dev",
"3.13-dev",
"3.12-dev",
"3.8",
"3.9",
"3.10",
"3.11",
"3.12",
"3.13",
]
os: [
ubuntu-latest,
]
steps:
- uses: actions/checkout@v4
- uses: deadsnakes/[email protected]
name: Set up Python ${{ matrix.python-version }} (deadsnakes)
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -U pytest
python -m pip install -U tqdm
- name: Test
run: |
python --version --version
python test.py
python -m pip --version