From 2356749b262effaa157266c0bfef3927f3dfeb79 Mon Sep 17 00:00:00 2001 From: Sasanka Ranawaka Date: Sun, 23 Nov 2025 12:29:36 +0530 Subject: [PATCH] Add GitHub Actions workflow for multiple jobs --- .github/workflows/mutil-jobs.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/mutil-jobs.yaml diff --git a/.github/workflows/mutil-jobs.yaml b/.github/workflows/mutil-jobs.yaml new file mode 100644 index 0000000..efe4ddf --- /dev/null +++ b/.github/workflows/mutil-jobs.yaml @@ -0,0 +1,26 @@ +name: muti jobs running + +on: + workflow_dispatch: + +jobs: + say-hello-in-bash: + runs-on: ubuntu-24.04 + steps: + - run: echo "Hello world!" + shell: bash + + say-hello-in-python: + runs-on: ubuntu-24.04 + steps: + - run: print("Hello world") + shell: python + + say-actions: + runs-on: ubuntu-24.04 + steps: + - uses: actions/hello-world@v4 + + with: + greet: "Who to greet" +