Skip to content

Commit

Permalink
yaml fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
oulap committed Sep 25, 2024
1 parent f66d69e commit ad4fe90
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ on:

jobs:
build:
name: Build and upload artefact
name: Build and upload artefact
strategy:
matrix:
os: [macos-latest, macos-13]
python-version: ["3.8", "3.9", "3.10", "3.11"]
max-parallel: 1
max-parallel: 1
matrix:
os: [macos-latest, macos-13]
python-version: ["3.8", "3.9", "3.10", "3.11"]

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

Expand Down Expand Up @@ -107,11 +107,12 @@ jobs:
name: Test the wheel
needs: build
strategy:
max-parallel: 1
matrix:
os: [macos-latest, macos-13]
python-version: ["3.8", "3.9", "3.10", "3.11"]
max-parallel: 1
runs-on: ${{ matrix.os }}

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

steps:
- name: Checkout
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,18 @@ on:
jobs:
example_matrix:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
max-parallel: 1
max-parallel: 1
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]

runs-on: windows-2022

if: ${{ startsWith(github.ref, 'refs/tags') || !contains(github.event.head_commit.message, '[skip ci]') }}

steps:
- uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v4

- name: Checkout submodules
run: |
git submodule init
Expand Down

0 comments on commit ad4fe90

Please sign in to comment.