Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

Remove the paths

Remove the paths #5

Workflow file for this run

on:
push:
branches:
- main
jobs:
build-backend:
defaults:
run:
working-directory: backend
name: Build the application
runs-on: ubuntu-22.04
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- name: Checkout the code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # ratchet:actions/checkout@v4
- name: Setup java
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # ratchet:actions/setup-java@v3
with:
distribution: temurin
java-version: 17
cache: gradle
- name: Run gradle build
run: ./gradlew build --no-daemon