Update hello.yml
This commit is contained in:
parent
c3678ee90e
commit
3444fc0815
13
.github/workflows/hello.yml
vendored
13
.github/workflows/hello.yml
vendored
@ -17,6 +17,7 @@ jobs:
|
|||||||
include:
|
include:
|
||||||
- hello: AAA
|
- hello: AAA
|
||||||
bye: BBB
|
bye: BBB
|
||||||
|
wait: true
|
||||||
- hello: CCC
|
- hello: CCC
|
||||||
key: DDD
|
key: DDD
|
||||||
- hello: EEE
|
- hello: EEE
|
||||||
@ -25,7 +26,11 @@ jobs:
|
|||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Run a one-line script
|
- name: Run a one-line script
|
||||||
run: |
|
run: echo HELLO ${{matrix.hello}} and BYE ${{matrix.bye}}
|
||||||
echo HELLO ${{matrix.hello}} and BYE ${{matrix.bye}}
|
|
||||||
sleep 20
|
- name: Wait
|
||||||
echo HELLO ${{matrix.hello}} and BYE ${{matrix.bye}}
|
if: matrix.wait
|
||||||
|
run: sleep 20
|
||||||
|
|
||||||
|
- name: Run again
|
||||||
|
run: echo HELLO ${{matrix.hello}} and BYE ${{matrix.bye}}
|
||||||
|
Loading…
Reference in New Issue
Block a user