tachiyomi/.github/workflows/build_pull_request.yml

39 lines
880 B
YAML
Raw Normal View History

name: PR build check
on:
pull_request:
paths-ignore:
- '**.md'
- 'i18n/src/main/res/**/strings.xml'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
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@v3
2023-04-17 00:02:24 +02:00
- name: Set up JDK
2022-05-10 23:53:19 +02:00
uses: actions/setup-java@v3
with:
2023-04-17 00:02:24 +02:00
java-version: 17
2022-05-10 23:53:19 +02:00
distribution: adopt
- name: Build app and run unit tests
2021-11-29 01:08:42 +01:00
uses: gradle/gradle-command-action@v2
with:
arguments: lintKotlin assembleStandardRelease testReleaseUnitTest