From 36291f376228bbe4bab8a659adb670b5f2b1a5f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ritzl?= Date: Fri, 9 Aug 2019 07:30:46 +0200 Subject: [PATCH] Added test workflow --- .github/workflows/test.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..2586d34 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,18 @@ +name: Greet Everybody +# This workflow is triggered on pushes to the repository. +on: [push] + +jobs: + build: + # Job name is Greeting + name: Greeting + # This job runs on Linux + runs-on: ubuntu-latest + steps: + # This step uses the hello-world-action stored in this workflow's repository. + - uses: ./hello-world-action + with: + who-to-greet: 'Octocat' + id: hello + # This step prints the time. + - run: echo "The time was ${{ steps.hello.outputs.time }}"