feat: pipeline should now test if the project builds
This commit is contained in:
parent
4880f3829c
commit
628c61fb8b
20
.gitea/workflows/build-back.yaml
Normal file
20
.gitea/workflows/build-back.yaml
Normal file
@ -0,0 +1,20 @@
|
||||
name: Build
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout sources
|
||||
uses: actions/checkout@v4
|
||||
- name: Setup Java
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
distribution: 'temurin'
|
||||
java-version: 21
|
||||
- name: Setup Gradle
|
||||
uses: gradle/actions/setup-gradle@v4
|
||||
- name: Build with Gradle
|
||||
run: ./gradlew build
|
Loading…
x
Reference in New Issue
Block a user