Update hello.yml

This commit is contained in:
Marcel Schwarz 2020-03-29 03:24:10 +02:00 committed by GitHub
parent c3678ee90e
commit 3444fc0815
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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}}