Skip to content

Commit

Permalink
Update examples.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
yannrichet-irsn authored Nov 28, 2024
1 parent 85ca089 commit 391b109
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
Python: [3.7, 3.8, 3.9, 3.10, 3.11, 3.12]
Python: [3.8, 3.9, 3.10, 3.11, 3.12]
runs-on: ${{matrix.os}}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -24,7 +24,7 @@ jobs:
distribution: 'adopt'
- uses: actions/setup-python@v4
with:
python-version: ${{matrix.Python}}
python-version: '${{matrix.Python}}'
- run: pip3 install --upgrade pip
shell: bash
- run: mkdir ${{matrix.os}}-Python${{matrix.Python}}
Expand All @@ -49,5 +49,5 @@ jobs:
- uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: artifact-${{ matrix.os }}
name: artifact-${{matrix.os}}-Python${{matrix.Python}}
path: ./${{matrix.os}}-*

0 comments on commit 391b109

Please sign in to comment.