Skip to content

Run the tests on current versions of Python #35

Run the tests on current versions of Python

Run the tests on current versions of Python #35

Workflow file for this run

name: Testrunner
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.10", "3.12", "pypy-3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install requirements
run: |
python -m pip install --upgrade pip
python -m pip install wheel pytest
- name: Install svgwrite
run: |
python -m pip install .
- name: Run pytest
run: |
python -m pytest