Skip to content

ci: refactor: remove GitHub Actions unit test workflow dependency on 'tox' #2752

ci: refactor: remove GitHub Actions unit test workflow dependency on 'tox'

ci: refactor: remove GitHub Actions unit test workflow dependency on 'tox' #2752

Workflow file for this run

name: unittests
on:
push:
branches:
- main
- v14
pull_request:
branches:
- main
- v14
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Run Tests
run: python -m unittest