3
0
Mirror von https://github.com/ViaVersion/ViaBackwards.git synchronisiert 2024-07-26 17:08:05 +02:00
ViaBackwards/.github/workflows/gradle.yml

26 Zeilen
607 B
YAML

2021-03-31 22:17:03 +02: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
on: [push, pull_request]
jobs:
build:
2022-10-15 19:20:35 +02:00
runs-on: ubuntu-22.04
2021-03-31 22:17:03 +02:00
steps:
2022-10-15 19:20:35 +02:00
- uses: actions/checkout@v3
2021-03-31 22:17:03 +02:00
- name: Set up JDK 11
2022-10-15 19:20:35 +02:00
uses: actions/setup-java@v3
2021-03-31 22:17:03 +02:00
with:
2022-10-15 19:20:35 +02:00
distribution: 'temurin'
2021-03-31 22:17:03 +02:00
java-version: 11
- name: Build with Gradle
run: ./gradlew build
2022-10-15 19:20:35 +02:00
- uses: actions/upload-artifact@v3
2021-03-31 22:17:03 +02:00
with:
name: artifact
path: build/libs