animalrpfabric/.forgejo/workflows/build.yml
Soph :3 122cceb355
All checks were successful
build / build (21) (push) Successful in 1m20s
The whole emote class is broken :)
2024-09-13 18:18:59 +03:00

37 lines
1.2 KiB
YAML

# 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
on: [pull_request, push]
jobs:
build:
strategy:
matrix:
# Use these Java versions
java: [
21, # Current Java LTS
]
runs-on: node-16
steps:
- name: checkout repository
uses: https://github.com/actions/checkout@v4
- name: validate gradle wrapper
uses: https://github.com/gradle/wrapper-validation-action@v2
- name: setup jdk ${{ matrix.java }}
uses: https://github.com/actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'microsoft'
- name: make gradle wrapper executable
run: chmod +x ./gradlew
- name: build
run: ./gradlew build
- name: capture build artifacts
if: ${{ matrix.java == '21' }} # Only upload artifacts built from latest java
uses: https://github.com/actions/upload-artifact@v3
with:
name: Artifacts
path: build/libs/