Skip to content

KRPC-245 Fix eager configuration resolution warning in Gradle 9.0 #166

KRPC-245 Fix eager configuration resolution warning in Gradle 9.0

KRPC-245 Fix eager configuration resolution warning in Gradle 9.0 #166

Workflow file for this run

name: Verify Properties file
on:
pull_request:
permissions:
contents: read
jobs:
verify-properties:
name: Run Verification
runs-on: ubuntu-latest
steps:
- name: Checkout Sources
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Run Properties Update
run: ./gradlew updateProperties --info --stacktrace
- name: Verify Properties
run: |
if [[ -n "$(git status --porcelain | grep '\.properties')" ]]; then
echo "Properties file is not up-to-date. Please run `./gradlew updateProperties` and commit changes"
git status --porcelain
git diff --minimal | cat
exit 1
fi