Skip to content

Commit dfb3dd5

Browse files
committed
ci test 액션을 추가한다
1 parent 165bc95 commit dfb3dd5

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/ci-test.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: ci-test
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout source code
17+
uses: actions/checkout@v4
18+
19+
- name: Set up JDK 21
20+
uses: actions/setup-java@v4
21+
with:
22+
distribution: temurin
23+
java-version: 21
24+
25+
- name: Grant execute permission for Gradle wrapper
26+
run: chmod +x ./gradlew
27+
28+
- name: Build and run tests
29+
run: ./gradlew :unit-tests:test

0 commit comments

Comments
 (0)