commit 65f21328b504f8943d0539d457e431ca79c10b2e Author: Marcel Schwarz Date: Sun Mar 29 03:05:53 2020 +0200 Create 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}}