mirror of
https://github.com/s4u/setup-maven-action.git
synced 2026-02-12 00:05:30 +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
|
||||
runs-on: ubuntu-latest
|
||||
needs: [ test, test-deault ]
|
||||
if: always()
|
||||
|
||||
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