From 40edadf750bcdb53b937d725c1354c3c1447ddaf Mon Sep 17 00:00:00 2001 From: Luca Atella <59826960+atellaluca@users.noreply.github.com> Date: Thu, 24 Oct 2024 17:25:45 +0200 Subject: [PATCH] Create common-matrix.yml --- .../# .github/workflows/common-matrix.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/# .github/workflows/common-matrix.yml diff --git a/.github/workflows/# .github/workflows/common-matrix.yml b/.github/workflows/# .github/workflows/common-matrix.yml new file mode 100644 index 0000000..c6f00e0 --- /dev/null +++ b/.github/workflows/# .github/workflows/common-matrix.yml @@ -0,0 +1,15 @@ +# .github/workflows/common-matrix.yml +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']