3
0
mirror of https://github.com/britzl/monarch.git synced 2025-06-27 02:17:53 +02:00

Added test workflow

This commit is contained in:
Björn Ritzl 2019-08-09 07:30:46 +02:00
parent fd5f82c40b
commit 36291f3762

18
.github/workflows/test.yml vendored Normal file
View File

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