mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-19 15:39:19 +01:00
34 lines
794 B
YAML
34 lines
794 B
YAML
|
name: PR build check
|
||
|
on:
|
||
|
pull_request:
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
name: Build app
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- name: Clone repo
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: Validate Gradle Wrapper
|
||
|
uses: gradle/wrapper-validation-action@v1
|
||
|
|
||
|
- name: Set up JDK 11
|
||
|
uses: actions/setup-java@v1
|
||
|
with:
|
||
|
java-version: 11
|
||
|
|
||
|
- name: Copy CI gradle.properties
|
||
|
run: |
|
||
|
mkdir -p ~/.gradle
|
||
|
cp .github/runner-files/ci-gradle.properties ~/.gradle/gradle.properties
|
||
|
|
||
|
- name: Build app
|
||
|
uses: eskatos/gradle-command-action@v1
|
||
|
with:
|
||
|
arguments: assembleStandardRelease
|
||
|
wrapper-cache-enabled: true
|
||
|
dependencies-cache-enabled: true
|
||
|
configuration-cache-enabled: true
|