mirror of
https://github.com/nextcloud/android.git
synced 2024-11-26 07:05:49 +03:00
cff5e413c5
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
20 lines
444 B
YAML
20 lines
444 B
YAML
name: Detekt
|
|
|
|
on:
|
|
push:
|
|
branches: [ master, stable-* ]
|
|
pull_request:
|
|
branches: [ master, stable-* ]
|
|
|
|
jobs:
|
|
detekt:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up JDK 1.8
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 1.8
|
|
- name: Run detekt
|
|
run: ./gradlew detekt
|