We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9aeea31 commit 1eb2930Copy full SHA for 1eb2930
1 file changed
.github/workflows/Tests.yml
@@ -33,7 +33,13 @@ jobs:
33
| xargs -I{} basename {} | sort \
34
| jq -R -s -c '[split("\n")[] | select(length > 0)]')
35
36
- echo "groups=${groups}" >> "$GITHUB_OUTPUT"
+ # Filter testsuite from groups
37
+ filtered_groups = []
38
+ for test_name in "${groups[@]}"; do
39
+ test_name != "testsuite" && filtered_groups += (test_name)
40
+ done
41
+
42
+ echo "groups=${filtered_groups}" >> "$GITHUB_OUTPUT"
43
44
# Draft PR: only run ubuntu-latest + version=1
45
if [[ "${{ github.event_name }}" == "pull_request" && "${{ github.event.pull_request.draft }}" == "true" ]]; then
0 commit comments