Skip to content

Commit 37920d3

Browse files
authored
Add a Workflow for jadengong (#25)
* Created my first Workflow * Fixed typo in workflow
1 parent 69f15c3 commit 37920d3

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/jadengong.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Test for jadengong
2+
on: push
3+
jobs:
4+
my-first-job:
5+
name: Test job for jadengong
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Checkout repository
9+
uses: actions/checkout@v4
10+
11+
- name: Setup Java
12+
uses: actions/setup-java@v4
13+
with:
14+
distribution: 'temurin'
15+
java-version: '21'
16+
17+
- name: Setup Gradle
18+
uses: gradle/actions/setup-gradle@v4
19+
20+
- name: Test the code
21+
run: ./gradlew run --args="jadengong"
22+

0 commit comments

Comments
 (0)