Skip to content

Commit

Permalink
controlling the matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
arushsoel authored Jul 19, 2024
1 parent af5ee32 commit 2a88a44
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/python-installation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@ on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-12, windows-latest]
py-version: [3.7, 3.8, 3.9]
runs-on: ${{ matrix.os}}
steps:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: ${{ matrix.py-version}}

0 comments on commit 2a88a44

Please sign in to comment.