We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
arduino
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 710ecba commit 589266cCopy full SHA for 589266c
.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