Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions .github/workflows/scoped-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,9 @@ jobs:
if: steps.go-setup.outputs.cache-hit != 'true'
run: make install-tools

- name: Build gotestsum on Windows
if: runner.os == 'Windows'
shell: pwsh # Explicitly set the shell to avoid actionlint treating this an attempt to escape single quote
run: make "$(${PWD} -replace '\\', '/')/.tools/gotestsum"

- name: Build gotestsum
if: runner.os != 'Windows'
run: make "$PWD/.tools/gotestsum"
working-directory: ${{ github.workspace }}
run: make .tools/gotestsum

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The target needs to be the full path, as it is it breaks the step.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixing the target via #43036


- name: Run changed tests
if: needs.changedfiles.outputs.go_tests
Expand Down
Loading