This repository has been archived by the owner on Jul 26, 2024. It is now read-only.
Split JAX-RS resource and service (separation of concerns) #26
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |