Skip to content

Commit 7231626

Browse files
committed
test: Fixed runners not running 'board' integration test
1 parent c45ab20 commit 7231626

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: .github/workflows/test-go-task.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,9 @@ jobs:
7070

7171
- name: Collect tests
7272
id: collection
73+
# jq flags must be "-cRn" see: https://stackoverflow.com/a/68859958/1655275
7374
run: |
74-
echo "tests-data=$(go list ./internal/integrationtest/... | grep integrationtest/ | tr "/" " " | cut -d " " -f 6 | jq -cR '[inputs]')" >> $GITHUB_OUTPUT
75+
echo "tests-data=$(go list ./internal/integrationtest/... | grep integrationtest/ | tr "/" " " | cut -d " " -f 6 | jq -cRn '[inputs]')" >> $GITHUB_OUTPUT
7576
7677
test-integration:
7778
needs: tests-collector

0 commit comments

Comments
 (0)