Skip to content

test matrix strategy #1

test matrix strategy

test matrix strategy #1

Workflow file for this run

name: Matrix Strategy Workflow
on: [push, workflow_dispatch, pull_request]
jobs:
PR-Verification:
strategy:
matrix:
python-version: [3.10, 3.11, 3.12]
operating-system: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: $ {{ matrix.operating-system }}
steps:
- name: Get code
uses: actions/checkout@v4
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
export PATH="$HOME/.local/bin:$PATH"