Skip to content

fix packages in runtimeconfig module #46

fix packages in runtimeconfig module

fix packages in runtimeconfig module #46

Workflow file for this run

name: Run Gradle on PRs
on: pull_request
jobs:
gradle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: 17
cache: 'gradle'
distribution: "temurin"
- run: ./gradlew build --no-daemon
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure() # always run even if the previous step fails
with:
report_paths: '**/build/test-results/*/TEST-*.xml'
detailed_summary: true
include_passed: true