Clyde/.gitea/workflows/backend.yaml
Anthony Debucquoy 29f13c3a3b
Some checks failed
Build and test backend / Build-backend (push) Successful in 1m22s
deploy to production / deploy-frontend (push) Successful in 28s
deploy to production / deploy-backend (push) Failing after 1m29s
Build and test FrontEnd / Build-frontend (push) Successful in 24s
fixing backend deploy
2024-04-21 09:57:13 +02:00

21 lines
414 B
YAML

name: Build and test backend
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
Build-backend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
- uses: gradle/gradle-build-action@v3
- name: building
run: ./gradlew backend:build -x test