mirror of
https://github.com/nextcloud/android.git
synced 2024-11-23 21:55:48 +03:00
f2aff7a12c
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
26 lines
763 B
YAML
26 lines
763 B
YAML
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:
|
|
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
|
|
- name: Set up JDK 17
|
|
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3
|
|
with:
|
|
distribution: "temurin"
|
|
java-version: 17
|
|
- name: Detect SNAPSHOT
|
|
run: scripts/analysis/detectWrongSettings.sh
|