2020-10-31 11:03:46 +01:00
|
|
|
# This workflow will build a Java project with Gradle
|
|
|
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
|
|
|
|
name: Java CI with Gradle
|
2021-05-04 22:15:06 +02:00
|
|
|
on: [ push, pull_request ]
|
2020-10-31 11:03:46 +01:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-05-04 22:15:06 +02:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-java@v1
|
|
|
|
with:
|
|
|
|
java-version: 16
|
2021-06-10 21:01:36 +02:00
|
|
|
- uses: actions/cache@v2
|
2021-05-06 01:33:57 +02:00
|
|
|
with:
|
|
|
|
path: ~/.gradle/
|
2021-07-11 13:45:53 +02:00
|
|
|
key: ${{ runner.os }}-build-aspirin-${{ hashFiles('**/build.gradle.kts') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-build-aspirin-
|
2021-06-12 12:37:02 +02:00
|
|
|
- run: ./gradlew build
|
2021-05-04 22:15:06 +02:00
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: artifact
|
|
|
|
path: build/libs/
|