From 9ab4d0d5ba0b546824243d7111c8f47403568d8d Mon Sep 17 00:00:00 2001 From: mirageoasis Date: Tue, 20 Aug 2024 19:21:12 +0900 Subject: [PATCH 1/2] =?UTF-8?q?chore:=20PR=EC=8B=9C=20=ED=85=8C=EC=8A=A4?= =?UTF-8?q?=ED=8A=B8=20=EC=9E=91=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..fe899c44 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,24 @@ +name: unit test on push +on: [ pull_request ] + +jobs: + deploy: + name: unit test + runs-on: ubuntu-latest + steps: + - name: checkout + uses: actions/checkout@v3 + with: + token: ${{ secrets.PRIVATE_TOKEN }} + submodules: true + + - name: Set up JDK 17 + uses: actions/setup-java@v3 + with: + distribution: 'temurin' + java-version: '17' + + - name: Build with Gradle + run: | + chmod +x ./gradlew + ./gradlew --info test \ No newline at end of file From 47484cf70150829d7285faa3b71f693c12ae651b Mon Sep 17 00:00:00 2001 From: hseong3243 <48748265+hseong3243@users.noreply.github.com> Date: Tue, 20 Aug 2024 20:29:39 +0900 Subject: [PATCH 2/2] =?UTF-8?q?setting:=20CI=20=EC=8A=A4=ED=81=AC=EB=A6=BD?= =?UTF-8?q?=ED=8A=B8=20=EA=B0=9C=ED=96=89=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fe899c44..66bc167e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,4 +21,4 @@ jobs: - name: Build with Gradle run: | chmod +x ./gradlew - ./gradlew --info test \ No newline at end of file + ./gradlew --info test