From 4db9c6aac9d578ae89b8bc096dad1138a486b32f Mon Sep 17 00:00:00 2001 From: mban Date: Mon, 13 May 2024 01:32:16 +0900 Subject: [PATCH] =?UTF-8?q?build=20job=E3=81=A8=20test=20job=E3=81=AB?= =?UTF-8?q?=E5=88=86=E3=81=91=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/KotlinTest.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/KotlinTest.yml b/.github/workflows/KotlinTest.yml index 92540ff..a10f25f 100644 --- a/.github/workflows/KotlinTest.yml +++ b/.github/workflows/KotlinTest.yml @@ -1,6 +1,6 @@ name: Kotlin Test with Gradle -on: [push, pull_request] +on: [ push, pull_request ] jobs: build: @@ -19,6 +19,9 @@ jobs: - name: Build with Gradle run: ./gradlew build - + test: + runs-on: ubuntu-latest + needs: build + steps: - name: Test with Gradle run: ./gradlew test \ No newline at end of file