Introduce build pipeline (#4)
All checks were successful
Build / Explore-Gitea-Actions (push) Successful in 44s
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>
This commit is contained in:
16
.gitea/workflows/build.yml
Normal file
16
.gitea/workflows/build.yml
Normal file
@@ -0,0 +1,16 @@
|
||||
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
|
||||
Reference in New Issue
Block a user