Chore: Maintenance release 2024/Dec v01 #232
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests on all supported platforms | |
on: | |
pull_request: ~ | |
workflow_dispatch: ~ | |
jobs: | |
test: | |
name: Run test on ${{ matrix.os }} with ${{ matrix.py_ver }} | |
strategy: | |
matrix: | |
os: | |
- macOS-latest | |
- macos-14 | |
- macos-13 | |
- ubuntu-latest | |
- ubuntu-24.04 | |
- ubuntu-22.04 | |
- windows-latest | |
- windows-2022 | |
- windows-2019 | |
runs-on: ${{ matrix.os }} | |
if: ${{ ! github.event.pull_request.draft }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
cache: 'pip' | |
- name: Install dependencies | |
run: pip install -r requirements-dev.txt | |
- name: Run tests | |
run: python -m pytest |