Skip to content

Commit

Permalink
.github/workflows: fixed runs-on condition (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
giautm authored Aug 5, 2024
1 parent 82cfd63 commit f3c5f5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ jobs:

test:
name: Test (${{ matrix.os }})
runs-on: macos-latest
needs: build
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/[email protected]
Expand Down

0 comments on commit f3c5f5f

Please sign in to comment.