Skip to content

if we need to start the app locally then use ./mvnw spring-boot:run -… #3

if we need to start the app locally then use ./mvnw spring-boot:run -…

if we need to start the app locally then use ./mvnw spring-boot:run -… #3

name: Catalog Service
on:
push:
paths:
- catalog-service/**
branches:
- '**'
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
working-directory: ./catalog-service
defaults:
run:
working-directory: ${{ env.working-directory }}
steps:
- uses: actions/checkout@v4
- name: Setup Java 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'maven'
- name: Build with Maven
run: ./mvnw -ntp verify