Product availability fix #128
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: Java CI with Maven | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
cache: maven | |
- name: Start database with Docker Compose | |
run: | | |
cd app | |
docker-compose up --build -d | |
- name: Build with Maven | |
run: | | |
cd app | |
ENVIRONMENT=github-actions mvn -B package --file ./pom.xml | |
- name: Stop database with Docker Compose | |
run: | | |
cd app | |
docker-compose down |