diff --git a/.github/workflows/common-matrix.yml b/.github/workflows/common-matrix.yml new file mode 100644 index 0000000..f4725b6 --- /dev/null +++ b/.github/workflows/common-matrix.yml @@ -0,0 +1,14 @@ +name: Common Matrix + +on: + workflow_call: + +jobs: + matrix-job: + runs-on: ${{ matrix.os }} + + strategy: + fail-fast: false + matrix: + os: [ubuntu-22.04, windows-2022, macos-12] + python-version: ['3.9', '3.10', '3.11', '3.12']