From e02e727850a5972da87b97ed253161fecba075ca Mon Sep 17 00:00:00 2001 From: Lwin Ko Ko <129619265+lwinkoko96@users.noreply.github.com> Date: Sat, 8 Mar 2025 22:57:21 +0630 Subject: [PATCH 1/2] Update python-installation.yml --- .github/workflows/python-installation.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-installation.yml b/.github/workflows/python-installation.yml index 591066bd..e4dcc9de 100644 --- a/.github/workflows/python-installation.yml +++ b/.github/workflows/python-installation.yml @@ -4,10 +4,20 @@ on: [push] jobs: build: - runs-on: ubuntu-latest + runs-on: '${{ matrix.os }}' + strategy: + matrix: + os: + - ubuntu-latest + - macos-14 + - windows-latest + py-version: + - 3.10 + - 3.11 + - 3.12 steps: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: 3.10 + python-version: ${{ matrix.py-version }} From fa46e5618cc0fd8104493f380939386691cd18c1 Mon Sep 17 00:00:00 2001 From: Lwin Ko Ko <129619265+lwinkoko96@users.noreply.github.com> Date: Sat, 8 Mar 2025 23:01:34 +0630 Subject: [PATCH 2/2] Configure matrix strategy for build job --- .github/workflows/python-installation.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/python-installation.yml b/.github/workflows/python-installation.yml index e4dcc9de..1aadb341 100644 --- a/.github/workflows/python-installation.yml +++ b/.github/workflows/python-installation.yml @@ -1,5 +1,4 @@ name: Installing Python - on: [push] jobs: