Skip to content

feature/LWF-18_home-page-tutorial #83

feature/LWF-18_home-page-tutorial

feature/LWF-18_home-page-tutorial #83

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Java CI with Maven
on:
pull_request:
branches: [ "main", "dev" ]
jobs:
build:
name: Backend testing
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up JDK 18
uses: actions/setup-java@v3
with:
java-version: '18'
distribution: 'temurin'
cache: maven
- name: Build & test Spring Boot modules with Maven
run: mvn -f backend/pom.xml package spring-boot:repackage