Update hello.yml

This commit is contained in:
Marcel Schwarz 2020-03-29 03:14:36 +02:00 committed by GitHub
parent 65f21328b5
commit 0175d09c5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,6 +10,8 @@ jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
max-parallel: 0
matrix:
hello: [AAA, CCC, EEE]
include:
@ -23,4 +25,7 @@ jobs:
- uses: actions/checkout@v2
- name: Run a one-line script
run: echo HELLO ${{matrix.hello}} and BYE ${{matrix.bye}}
run: |
echo HELLO ${{matrix.hello}} and BYE ${{matrix.bye}}
sleep 20
echo HELLO ${{matrix.hello}} and BYE ${{matrix.bye}}