Skip to content

Commit

Permalink
feat: generate artifact for multiples OS
Browse files Browse the repository at this point in the history
  • Loading branch information
luisfbl committed Sep 13, 2024
1 parent 7100784 commit f8f590a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,17 @@ permissions:

jobs:
build:
runs-on: windows-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]

steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.10"
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit f8f590a

Please sign in to comment.