2023-04-12 16:38:35 +00:00
|
|
|
# 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
|
|
|
|
|
2023-05-03 08:00:55 +00:00
|
|
|
name: Test
|
2023-04-12 16:38:35 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches: [ "develop" ]
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
jobs:
|
2023-05-03 07:57:04 +00:00
|
|
|
test:
|
2023-04-12 16:38:35 +00:00
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-09-30 05:29:32 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
2023-09-30 05:33:00 +00:00
|
|
|
- name: Cache
|
|
|
|
uses: actions/cache@v3.3.2
|
2023-09-30 05:29:32 +00:00
|
|
|
with:
|
|
|
|
path: ~/.gradle/wrapper
|
|
|
|
key: gradle-wrapper-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
|
2023-09-30 05:33:00 +00:00
|
|
|
- name: Cache
|
|
|
|
uses: actions/cache@v3.3.2
|
2023-09-30 05:29:32 +00:00
|
|
|
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 }}-
|
2023-09-30 05:33:00 +00:00
|
|
|
- name: Cache
|
|
|
|
uses: actions/cache@v3.3.2
|
2023-09-30 05:29:32 +00:00
|
|
|
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: Gradle Build Action
|
|
|
|
uses: gradle/gradle-build-action@v2.8.1
|
|
|
|
with:
|
|
|
|
arguments: test
|