Skip to content

Chore/authentication #111

Chore/authentication

Chore/authentication #111

Workflow file for this run

name: Backend CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
paths:
- 'backend/**' # Only trigger on changes in the backend directory
- 'mvnw'
- 'mvnw.cmd'
- 'pom.xml'
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'zulu'
cache: 'maven'
- name: build with Maven
run: |
./mvnw -B -V -ntp verify