Skip to content

Commit

Permalink
Fix syntax error in GitHub Actions workflow
Browse files Browse the repository at this point in the history
Corrected a syntax error by removing an unnecessary bracket in the 'runs-on' field, within the test workflow for MacOS environment. This ensures that the action workflow runs smoothly on different architectural environments including MacOS.
  • Loading branch information
ygdrasil-io committed Feb 1, 2024
1 parent 1ab54ef commit 8eb4907
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
with:
path: build-reports.zip
tests-mac:
runs-on: macos-latest]
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Set up QEMU
Expand Down

0 comments on commit 8eb4907

Please sign in to comment.