Skip to content

Commit

Permalink
Fix OS matrix for publish workflow [skip-ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
emesare authored Dec 22, 2023
1 parent 8c8c777 commit 5d6b485
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ on:

jobs:
build:
runs-on: [ubuntu-latest, windows-latest, macos-latest]
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: PyO3/maturin-action@v1
Expand Down

0 comments on commit 5d6b485

Please sign in to comment.