Merge pull request #221 from Arabasta/update-readme #367
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 Spring Main App | |
on: | |
push: | |
branches-ignore: | |
- 'release/**' | |
paths: | |
- 'back/spring/**' | |
pull_request: | |
branches-ignore: | |
- 'release/**' | |
paths: | |
- 'back/spring/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: maven | |
- name: Build with Maven | |
working-directory: ./back/spring | |
run: mvn -B package --file pom.xml -DskipTests |