From 65f21328b504f8943d0539d457e431ca79c10b2e Mon Sep 17 00:00:00 2001 From: Marcel Schwarz Date: Sun, 29 Mar 2020 03:05:53 +0200 Subject: [PATCH] Create hello.yml --- .github/workflows/hello.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/hello.yml diff --git a/.github/workflows/hello.yml b/.github/workflows/hello.yml new file mode 100644 index 0000000..d0fc4e6 --- /dev/null +++ b/.github/workflows/hello.yml @@ -0,0 +1,26 @@ +name: CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + hello: [AAA, CCC, EEE] + include: + - hello: AAA + bye: BBB + - hello: CCC + key: DDD + - hello: EEE + bye: FFF + steps: + - uses: actions/checkout@v2 + + - name: Run a one-line script + run: echo HELLO ${{matrix.hello}} and BYE ${{matrix.bye}}