From 82f2df86dac1453e20c695247c8834eccad41a41 Mon Sep 17 00:00:00 2001 From: usbharu Date: Mon, 13 Nov 2023 15:34:45 +0900 Subject: [PATCH 1/2] Create integration-test.yml --- .github/workflows/integration-test.yml | 63 ++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 .github/workflows/integration-test.yml diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml new file mode 100644 index 00000000..6709d1a0 --- /dev/null +++ b/.github/workflows/integration-test.yml @@ -0,0 +1,63 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. +# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle + +name: Integration Test + +on: + pull_request: + branches: [ "develop" ] + +permissions: + contents: read + checks: write + id-token: write + +jobs: + integration-test: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Cache + uses: actions/cache@v3.3.2 + with: + path: ~/.gradle/wrapper + key: gradle-wrapper-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }} + - name: Cache + uses: actions/cache@v3.3.2 + with: + path: | + ~/.gradle/caches/jars-* + ~/.gradle/caches/transforms-* + ~/.gradle/caches/modules-* + key: gradle-dependencies-${{ steps.cache-key.outputs.week }}-${{ hashFiles('**/*.gradle.kts') }} + restore-keys: gradle-dependencies-${{ steps.cache-key.outputs.week }}- + - name: Cache + uses: actions/cache@v3.3.2 + with: + path: | + ~/.gradle/caches/build-cache-* + ~/.gradle/caches/[0-9]*.* + .gradle + key: ${{ runner.os }}-gradle-build-${{ github.workflow }}-${{ steps.cache-key.outputs.week }}-${{ github.sha }} + restore-keys: ${{ runner.os }}-gradle-build-${{ github.workflow }}-${{ steps.cache-key.outputs.week }}- + - name: Set up JDK 17 + uses: actions/setup-java@v3 + with: + java-version: '17' + distribution: 'temurin' + - name: Run Integration Test + uses: gradle/gradle-build-action@v2.8.1 + with: + arguments: integrationTest + - name: Publish Test Report + uses: mikepenz/action-junit-report@v2 + if: always() + with: + report_paths: '**/build/test-results/test/TEST-*.xml' From 16eebafe52ae81243586b8ea335a52602a826ae5 Mon Sep 17 00:00:00 2001 From: usbharu <64310155+usbharu@users.noreply.github.com> Date: Mon, 13 Nov 2023 15:59:32 +0900 Subject: [PATCH 2/2] =?UTF-8?q?chore:=20github=20actions=E3=82=92=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/coverage.yml | 3 ++- .github/workflows/integration-test.yml | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index b7409034..6bb91364 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -18,8 +18,9 @@ jobs: - name: Run JUnit uses: gradle/gradle-build-action@v2.8.1 with: - arguments: koverXmlReport + arguments: koverXmlReport -x integrationTest - name: Add coverage report to PR + if: always() id: kover uses: mi-kas/kover-report@v1 with: diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 6709d1a0..1788e609 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -52,6 +52,10 @@ jobs: with: java-version: '17' distribution: 'temurin' + - name: MongoDB in GitHub Actions + uses: supercharge/mongodb-github-action@1.10.0 + with: + mongodb-version: latest - name: Run Integration Test uses: gradle/gradle-build-action@v2.8.1 with: