Skip to content

Commit 56dd0ca

Browse files
committed
oitm
1 parent 56da562 commit 56dd0ca

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.github/workflows/ci-cd-check.jar

3.37 MB
Binary file not shown.

.github/workflows/oitm.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Run Java JAR
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
run-jar-file:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
# Step 1: Checkout code
17+
- name: Checkout code
18+
uses: actions/checkout@v3
19+
20+
# Step 2: Set up Java
21+
- name: Set up Java
22+
uses: actions/setup-java@v3
23+
with:
24+
distribution: 'temurin' # Java distribution
25+
java-version: '17' # Adjust to your required version
26+
27+
# Step 3: Run the JAR file
28+
- name: Run JAR file
29+
run: java -jar ci-cd-check.jar

0 commit comments

Comments
 (0)