diff --git a/.github/workflows/01-hello-world.yaml b/.github/workflows/01-hello-world.yaml new file mode 100644 index 0000000..aa2b252 --- /dev/null +++ b/.github/workflows/01-hello-world.yaml @@ -0,0 +1,8 @@ +name: hello-world +on: push +jobs: + my-job: + runs-on: ubuntu-latest + steps: + - name: my-step + run: echo "Hello World!" \ No newline at end of file