Skip to content
This repository was archived by the owner on Apr 20, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: Continuous Integration

on:
push:
branches-ignore:
- main
pull_request:
branches:
- main
Expand All @@ -22,5 +19,11 @@ jobs:
distribution: temurin
java-version: "17"

- name: Build with Maven
run: mvn clean package
- name: Build and start containers
run: docker compose up -d

- name: Run Maven build inside container
run: docker compose exec app mvn clean package -f /source/pom.xml -X

- name: Stop containers
run: docker compose down