From 7bac7fcd0b28f922cfa2aba92ce401aa47d6d6b6 Mon Sep 17 00:00:00 2001 From: Sanjay-Patil070 <110844076+Sanjay-Patil070@users.noreply.github.com> Date: Sun, 28 Dec 2025 17:27:17 +0530 Subject: [PATCH] Update python-installation.yml --- .github/workflows/python-installation.yml | 28 +++++++++++++++++------ 1 file changed, 21 insertions(+), 7 deletions(-) diff --git a/.github/workflows/python-installation.yml b/.github/workflows/python-installation.yml index 591066bd..34c9e458 100644 --- a/.github/workflows/python-installation.yml +++ b/.github/workflows/python-installation.yml @@ -1,13 +1,27 @@ name: Installing Python -on: [push] +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 - + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.py-version }} + + - name: Verify Python version + run: python --version