ViaFabric/.github/workflows/build.yml

33 lines
985 B
YAML
Raw Normal View History

2021-01-03 21:21:58 +01:00
# Automatically build the project and run any configured tests for every push
# and submitted pull request. This can help catch issues that only occur on
# certain platforms or Java versions, and provides a first line of defence
# against bad commits.
name: build
2021-09-19 00:19:46 +02:00
on: [ pull_request, push ]
2021-01-03 21:21:58 +01:00
jobs:
build:
runs-on: ubuntu-22.04
2021-01-03 21:21:58 +01:00
steps:
- uses: actions/checkout@v3
- uses: gradle/wrapper-validation-action@v1
- uses: actions/setup-java@v3
2021-01-03 21:21:58 +01:00
with:
distribution: 'temurin'
java-version: 17
- uses: actions/cache@v3
2021-05-06 01:38:09 +02:00
with:
2021-09-19 00:19:46 +02:00
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
2021-01-03 21:21:58 +01:00
- name: build
2022-05-22 19:17:14 +02:00
run: ./gradlew build
- uses: actions/upload-artifact@v3
2021-01-03 21:21:58 +01:00
with:
name: Artifacts
2021-03-30 13:51:53 +02:00
path: build/libs/