Skip to content

Merge pull request #443 from PyAr/ghactions-jun25 #107

Merge pull request #443 from PyAr/ghactions-jun25

Merge pull request #443 from PyAr/ghactions-jun25 #107

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
run-tests:
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-24.04, macos-14, macos-15, windows-2022, windows-2025]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -U -r requirements.txt
- name: Run tests
run: |
pytest