We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c45ab20 commit 7231626Copy full SHA for 7231626
.github/workflows/test-go-task.yml
@@ -70,8 +70,9 @@ jobs:
70
71
- name: Collect tests
72
id: collection
73
+ # jq flags must be "-cRn" see: https://stackoverflow.com/a/68859958/1655275
74
run: |
- 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
76
77
test-integration:
78
needs: tests-collector
0 commit comments