mirror of
https://github.com/s4u/setup-maven-action.git
synced 2026-02-18 00:00:11 +08:00
Fix verify job
This commit is contained in:
8
.github/workflows/test.yml
vendored
8
.github/workflows/test.yml
vendored
@ -54,5 +54,11 @@ jobs:
|
|||||||
name: Test OK
|
name: Test OK
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [ test, test-deault ]
|
needs: [ test, test-deault ]
|
||||||
|
if: always()
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- run: echo OK
|
- run: 'true'
|
||||||
|
if: needs.test.result == 'success' && needs.test-deault.result == 'success'
|
||||||
|
|
||||||
|
- run: 'false'
|
||||||
|
if: needs.test.result != 'success' || needs.test-deault.result != 'success'
|
||||||
|
|||||||
Reference in New Issue
Block a user