Skip to content

ci: trigger matrix test on all push, for testing purposes #12

ci: trigger matrix test on all push, for testing purposes

ci: trigger matrix test on all push, for testing purposes #12

Workflow file for this run

name: Run full matrix Tests before Releases
on:
push:
workflow_call:
workflow_dispatch:
pull_request:
branches: [ release ]
jobs:
pre-release-matrix-test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-latest, macos-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/requirements.test.txt
pip install -e .
- name: Run tests
run: python run_tests.py dev