Skip to content

Commit

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

jobs:
build:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -19,9 +19,6 @@ 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 cac78f1

Please sign in to comment.