libpdfviewer/.github/workflows/build.yml

21 lines
416 B
YAML
Raw Normal View History

2020-12-22 00:06:32 +01:00
name: Build application
2021-11-30 05:35:34 +01:00
on: [pull_request, push]
2020-12-22 00:06:32 +01:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2022-01-25 20:59:31 +01:00
with:
submodules: true
2022-10-20 01:27:19 +02:00
- name: Set up JDK 19
uses: actions/setup-java@v3
2020-12-22 00:06:32 +01:00
with:
2021-09-30 06:50:23 +02:00
distribution: 'temurin'
2022-10-20 01:27:19 +02:00
java-version: 19
cache: gradle
2020-12-22 00:06:32 +01:00
- name: Build with Gradle
2021-09-30 06:45:09 +02:00
run: ./gradlew build --no-daemon