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