mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-05 14:45:09 +01:00
34 lines
799 B
YAML
34 lines
799 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: gradle/gradle-command-action@v1
|
|
with:
|
|
arguments: assembleStandardRelease
|
|
distributions-cache-enabled: true
|
|
dependencies-cache-enabled: true
|
|
configuration-cache-enabled: true
|