-
Notifications
You must be signed in to change notification settings - Fork 15
feat: allow configuring custom go-test runners #443
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,7 +11,7 @@ jobs: | |
| env: | ||
| COVERAGES: "" | ||
| SKIP32BIT: false | ||
| runs-on: ${{ format('{0}-latest', matrix.os) }} | ||
| runs-on: ${{ fromJSON(vars[format('UCI_GO_TEST_RUNNER_{0}', matrix.os)] || format('"{0}-latest"', matrix.os)) }} | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Sure! PRs from forks do not have access to |
||
| name: ${{ matrix.os }} (go ${{ matrix.go }}) | ||
| steps: | ||
| - uses: actions/checkout@v3 | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are environment variables case-insensitive?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When you save a var, it's automatically capitalised. Retrieval is case-insensitive.