Skip to content

Commit 49ff9b6

Browse files
committed
[ci] Better PR checks
1 parent f56093a commit 49ff9b6

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/build-and-test-v3.yml

+14
Original file line numberDiff line numberDiff line change
@@ -172,3 +172,17 @@ jobs:
172172
wails3 init -n ${{ matrix.template }} -t ${{ matrix.template }}
173173
cd ${{ matrix.template }}
174174
wails3 build
175+
176+
results:
177+
if: ${{ always() }}
178+
runs-on: ubuntu-latest
179+
name: v3 Build Results
180+
needs: [test_go, test_js, test_templates]
181+
steps:
182+
- run: |
183+
result="${{ needs.build.result }}"
184+
if [[ $result == "success" || $result == "skipped" ]]; then
185+
exit 0
186+
else
187+
exit 1
188+
fi

0 commit comments

Comments
 (0)