From 3e49f7f526020e8b2afac9b116d045b86f6391a1 Mon Sep 17 00:00:00 2001 From: midudev Date: Sun, 8 Aug 2021 20:24:26 +0200 Subject: [PATCH] Add our first workflow of GitHub Actions --- .github/workflows/hello.yml | 14 ++++++++++++++ 1 file changed, 14 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..ae8c2a7 --- /dev/null +++ b/.github/workflows/hello.yml @@ -0,0 +1,14 @@ +name: Say hello + +on: + push: + branches: + - main + +jobs: + hello_world: + runs-on: ubuntu-18.04 + steps: + - name: Echo the message + run: | + echo "Hola midu!" \ No newline at end of file