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