Skip to content

Merge branch 'master' of github-personal:maxwell-balla/bookstore #10

Merge branch 'master' of github-personal:maxwell-balla/bookstore

Merge branch 'master' of github-personal:maxwell-balla/bookstore #10

name: Catalog Service
on:
push:
paths:
- catalog-service/**
branches:
- '**'
pull_request:
branches: [master]
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 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: 'maven'
- name: Make Maven wrapper executable
run: chmod +x mvnw
- name: Force update Maven dependencies and build
run: ./mvnw clean install -U
- name: Run tests
run: ./mvnw test