All checks were successful
Build / Explore-Gitea-Actions (push) Successful in 44s
Co-authored-by: ThePindabaas <219561634+ThePindabaas@users.noreply.github.com> Reviewed-on: #4 Co-authored-by: ThePindabaas <thepindabaas@noreply.localhost> Co-committed-by: ThePindabaas <thepindabaas@noreply.localhost>
17 lines
392 B
YAML
17 lines
392 B
YAML
name: Build
|
|
run-name: ${{ gitea.ref }} - ${{ gitea.sha }}
|
|
on: [push, workflow_dispatch]
|
|
|
|
jobs:
|
|
Explore-Gitea-Actions:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: actions/setup-java@v5
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: '25'
|
|
- run: ./gradlew assemble
|
|
- run: ./gradlew test
|
|
- run: ./gradlew jar
|