Skip to content

Commit

Permalink
Fix matrix references
Browse files Browse the repository at this point in the history
  • Loading branch information
martinrieder authored Jul 14, 2024
1 parent c18e311 commit c54835a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ on: [push, pull_request, workflow_dispatch]

jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -27,7 +28,7 @@ jobs:
- name: Upload examples, demos, and tutorials
uses: actions/upload-artifact@v4
with:
name: examples-and-tutorials-${{ matrix.os }}-${{ matrix.version }}
name: examples-and-tutorials-v${{ matrix.python-version }}
path: |
examples/
tutorial/

0 comments on commit c54835a

Please sign in to comment.