Skip to content

Commit

Permalink
Upgrade setup_python action and add os matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
tledoux authored Aug 7, 2024
1 parent 332c8b0 commit 01d42bb
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,16 @@ permissions:
jobs:
build:

runs-on: windows-latest
strategy:
matrix:
os: [windows-latest, ubuntu-latest]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
Expand Down

0 comments on commit 01d42bb

Please sign in to comment.