mirror of
https://github.com/nextcloud/android.git
synced 2024-11-25 14:45:47 +03:00
4847d3f2f5
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
20 lines
425 B
YAML
20 lines
425 B
YAML
name: Detekt
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
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: Runt detekt
|
|
run: ./gradlew detekt
|