-
Notifications
You must be signed in to change notification settings - Fork 217
Add build setup to Daily Syntax Error Quality Check workflow #15095
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -30,6 +30,21 @@ safe-outputs: | |||||||||||||||||||
| close-older-issues: true | ||||||||||||||||||||
| timeout-minutes: 20 | ||||||||||||||||||||
| strict: true | ||||||||||||||||||||
| steps: | ||||||||||||||||||||
| - name: Set up Go | ||||||||||||||||||||
| uses: actions/setup-go@v5 | ||||||||||||||||||||
| with: | ||||||||||||||||||||
| go-version-file: go.mod | ||||||||||||||||||||
| cache: true | ||||||||||||||||||||
|
Comment on lines
+34
to
+38
|
||||||||||||||||||||
|
|
||||||||||||||||||||
| - name: Build gh-aw | ||||||||||||||||||||
| run: | | ||||||||||||||||||||
| make build | ||||||||||||||||||||
|
|
||||||||||||||||||||
|
Comment on lines
+39
to
+43
|
||||||||||||||||||||
| - name: Build gh-aw | |
| run: | | |
| make build | |
| - name: Build gh-aw | |
| run: | | |
| make build |
Copilot
AI
Feb 12, 2026
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.
The agent instructions later cd /tmp/... and run ./gh-aw compile ...; after that cd, ./gh-aw won’t exist unless the binary is copied there or added to PATH. Consider adding a step to add $GITHUB_WORKSPACE to $GITHUB_PATH (and then invoke gh-aw), or adjust the instructions/commands to use an absolute path like $GITHUB_WORKSPACE/gh-aw.
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.
actions/setup-go@v5was added to the action lock entries. If the workflow is updated to useactions/setup-go@v6like the rest of the repo, this extra v5 entry should be unnecessary; consider removing it (via re-running the lock regeneration) to keep the lockfile minimal and consistent.