diff --git a/.github/workflows/hello_world.yaml b/.github/workflows/hello_world.yaml new file mode 100644 index 0000000..23c2d9e --- /dev/null +++ b/.github/workflows/hello_world.yaml @@ -0,0 +1,25 @@ +name: Hello World Workflow + +on: + push: + branches: + - main + pull_request: + branches: + - main + workflow_dispatch: + +jobs: + hello: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: hello world + run: echo "Hello World" + shell: bash + goodbye: + runs-on: ubuntu-latest + steps: + - name: goodbye world + run: echo "Goodbye world" + shell: bash