mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-05 11:15:12 +01:00
0f5731360b
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
35 lines
766 B
YAML
35 lines
766 B
YAML
name: PR build check
|
|
on:
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**.md'
|
|
- 'app/src/main/res/**/strings.xml'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
name: Build app
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Clone repo
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Validate Gradle Wrapper
|
|
uses: gradle/wrapper-validation-action@v1
|
|
|
|
- name: Dependency Review
|
|
uses: actions/dependency-review-action@v2
|
|
|
|
- name: Set up JDK 11
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
java-version: 11
|
|
distribution: adopt
|
|
|
|
- name: Build app and run unit tests
|
|
uses: gradle/gradle-command-action@v2
|
|
with:
|
|
arguments: assembleStandardRelease testStandardReleaseUnitTest |