mirror of
https://github.com/nextcloud/talk-android
synced 2025-01-19 22:04:20 +00:00
769a3ef146
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
23 lines
572 B
YAML
23 lines
572 B
YAML
name: Check
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ master, stable-* ]
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
task: [ detekt, ktlint ]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up JDK 8
|
|
uses: actions/setup-java@v2.5.0
|
|
with:
|
|
distribution: "temurin"
|
|
java-version: 8.0
|
|
- name: Check ${{ matrix.task }}
|
|
run: ./gradlew ${{ matrix.task }}
|