Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 589266c

Browse files
committedOct 20, 2023
test: Fixed runners not running 'board' integration test
1 parent 710ecba commit 589266c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎.github/workflows/test-go-task.yml

Lines changed: 2 additions & 1 deletion
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)
Please sign in to comment.