We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 221a83a commit 95e4106Copy full SHA for 95e4106
.github/workflows/twister.yaml
@@ -218,7 +218,7 @@ jobs:
218
- twister-build
219
runs-on: ubuntu-22.04
220
# the build-and-test job might be skipped, we don't need to run this job then
221
- if: success() || failure()
+ if: (success() || failure()) && needs.twister-build.result != 'skipped'
222
223
steps:
224
- name: Check out source code
@@ -252,7 +252,6 @@ jobs:
252
junit.xml
253
254
- name: Publish Unit Test Results
255
- if: needs.twister-build.result != 'skipped'
256
uses: EnricoMi/publish-unit-test-result-action@v2
257
with:
258
check_name: Unit Test Results
0 commit comments