Skip to content

task: Test first GHA workflow [DHIS2-18615] #1

task: Test first GHA workflow [DHIS2-18615]

task: Test first GHA workflow [DHIS2-18615] #1

Workflow file for this run

name: Hello World Pipeline
on: [ pull_request ]
jobs:
say-hello:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Print Hello World
run: echo "Hello, World!"