diff --git a/.github/workflows/hello-world.yml b/.github/workflows/hello-world.yml new file mode 100644 index 0000000..7d9ca9b --- /dev/null +++ b/.github/workflows/hello-world.yml @@ -0,0 +1,12 @@ +name: say Hello World! #nmae of workflow + +on: + workflow_dispatch: + +jobs: + hello-world: #name of job + runs-on: ubuntu-latest + steps: #what will the job actaully do + - name: Print Hello World #list with "-" + run: echo Hello Worl # what the job code is + # add 2 spaces before the run