oblak/.github/workflows/gradle.yml
Josh Taylor 0f1d05ef9c Cache gradle workflow (#260)
* Cache gradle workflow

* Cache wrapper
2021-07-05 02:56:06 -07:00

26 lines
831 B
YAML

name: Java CI with Gradle
on: [ push, pull_request ]
jobs:
build:
# Only run on PRs if the source branch is on someone else's repo
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
~/.gradle/wrapper
~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: ${{ runner.os }}-gradle-
- uses: gradle/wrapper-validation-action@v1
- name: Set up JDK 16
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 16
- name: Build with Gradle
run: ./gradlew clean build