Skip to content

Update dependency org.junit.platform:junit-platform-launcher to v1.11.4 #63

Update dependency org.junit.platform:junit-platform-launcher to v1.11.4

Update dependency org.junit.platform:junit-platform-launcher to v1.11.4 #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://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: APITests_Gradle
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Build with Gradle and run unit tests
uses: gradle/gradle-build-action@e2097ccd7e8ed48671dc068ac4efa86d25745b39
with:
arguments: build --refresh-dependencies
- name: Run API tests as gradle task
run: |
TEST_TYPE=api TARGET_ENVIRONMENT=prod ./gradlew clean run