diff --git a/.github/workflows/1-hello-world.yml b/.github/workflows/1-hello-world.yml new file mode 100644 index 0000000..e03869a --- /dev/null +++ b/.github/workflows/1-hello-world.yml @@ -0,0 +1,13 @@ +name: 1 - Hello World GitHub Actions + +on: + push: + branches: + - master + +jobs: + hello: + runs-on: ubuntu-latest + steps: + - name: Hello there + run: echo 'hello'