Skip to content

Simplify workflow by removing Windows/macOS-specific steps #85

Simplify workflow by removing Windows/macOS-specific steps

Simplify workflow by removing Windows/macOS-specific steps #85

Workflow file for this run

name: "push test"
on: push
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
check-latest: true
- name: Run tests
run: |
python tests/runtests.py
continue-on-error: false