mirror of
https://github.com/nextcloud/android.git
synced 2024-11-25 22:55:46 +03:00
21 lines
425 B
YAML
21 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
|