Skip to content

Commit

Permalink
build jobと test jobに分ける
Browse files Browse the repository at this point in the history
  • Loading branch information
mban259 committed May 12, 2024
1 parent 10083b3 commit 4db9c6a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/KotlinTest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Kotlin Test with Gradle

on: [push, pull_request]
on: [ push, pull_request ]

jobs:
build:
Expand All @@ -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

0 comments on commit 4db9c6a

Please sign in to comment.