Skip to content

Commit

Permalink
task: Test first GHA workflow [DHIS2-18615]
Browse files Browse the repository at this point in the history
  • Loading branch information
muilpp committed Dec 13, 2024
1 parent 85f55a7 commit e226903
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/hello-world.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
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!"

0 comments on commit e226903

Please sign in to comment.