Skip to content

Commit 7d0334d

Browse files
committed
Allow to skip some platforms.
1 parent e5a7635 commit 7d0334d

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/test-suite.yaml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,18 +102,16 @@ jobs:
102102
shell: bash
103103
steps:
104104
- name: ⏭️ Check if platform should be skipped
105-
id: should-skip
106105
run: |
107106
SKIP_PLATFORMS="${{ inputs.skip-platforms }}"
108107
CURRENT_PLATFORM="${{ matrix.platform }}"
109108
110109
if [[ " $SKIP_PLATFORMS " == *" $CURRENT_PLATFORM "* ]]; then
111110
echo "⏭️ Skipping platform: $CURRENT_PLATFORM"
112-
echo "skip=true" >> $GITHUB_OUTPUT
113-
else
114-
echo "✅ Running tests for platform: $CURRENT_PLATFORM"
115-
echo "skip=false" >> $GITHUB_OUTPUT
111+
exit 0
116112
fi
113+
114+
echo "✅ Running tests for platform: $CURRENT_PLATFORM"
117115
118116
- name: 📥 Checkout code
119117
uses: actions/checkout@v4

0 commit comments

Comments
 (0)