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

Introduce Persistence Layer. #57

Introduce Persistence Layer.

Introduce Persistence Layer. #57

Workflow file for this run

name: CI Build
on:
push:
branches:
- "main"
paths:
- "customer-api-provider/**"
- ".github/**"
pull_request:
branches:
- "main"
paths:
- "customer-api-provider/**"
- ".github/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Build with Maven
working-directory: customer-api-provider
run: mvn -B package --file pom.xml