Closed zarfld closed 1 month ago
Related to #87
Fix the invalid workflow file by correcting the runs-on key syntax.
runs-on
README.md
.github/workflows/ci.yml
runs-on: [self-hosted, ${{ matrix.os }}]
runs-on: ${{ matrix.os }}
For more details, open the Copilot Workspace session.
Related to #87
Fix the invalid workflow file by correcting the
runs-on
key syntax.README.md
runs-on
key in the GitHub Actions workflow file..github/workflows/ci.yml
runs-on: [self-hosted, ${{ matrix.os }}]
toruns-on: ${{ matrix.os }}
to fix the YAML syntax error.For more details, open the Copilot Workspace session.