2023-06-13 09:52:48 +03:00
|
|
|
name: "Detect wrong settings"
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches: [ master, stable-* ]
|
|
|
|
|
|
|
|
# Declare default permissions as read only.
|
|
|
|
permissions: read-all
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: detect-wrong-settings-${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
detectWrongSettings:
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
|
|
|
|
steps:
|
2023-10-23 14:50:49 +03:00
|
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3
|
2023-06-13 09:52:48 +03:00
|
|
|
- name: Set up JDK 17
|
2023-09-25 16:36:09 +03:00
|
|
|
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3
|
2023-06-13 09:52:48 +03:00
|
|
|
with:
|
|
|
|
distribution: "temurin"
|
|
|
|
java-version: 17
|
|
|
|
- name: Detect SNAPSHOT
|
|
|
|
run: scripts/analysis/detectWrongSettings.sh
|