Add TestContainers sample for Doma Spring Boot #600
Workflow file for this run
This file contains hidden or 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: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
MAVEN_CLI_OPTS: --batch-mode --no-transfer-progress | |
jobs: | |
test: | |
if: contains(github.event.head_commit.message, '[skip ci]') == false | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: liberica | |
java-version: 17 | |
cache: maven | |
- name: Grant execute permission for mvnw | |
run: chmod +x mvnw | |
- name: Test with Maven | |
run: ./mvnw $MAVEN_CLI_OPTS formatter:validate test | |
- name: Upload reports | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: reports | |
path: ./**/target/surefire-reports | |
test-matrix: | |
if: contains(github.event.head_commit.message, '[skip ci]') == false | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
needs: [ test ] | |
strategy: | |
matrix: | |
# Latest LTS, latest release | |
java: [ 21, 24 ] | |
# OSS support versions | |
# https://spring.io/projects/spring-boot#support | |
# and milestone version of the next release | |
spring-boot-version: [ 3.4.4, 3.5.0-M3 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: liberica | |
java-version: ${{ matrix.java }} | |
cache: maven | |
- name: Grant execute permission for mvnw | |
run: chmod +x mvnw | |
- name: Test with Maven | |
run: ./mvnw $MAVEN_CLI_OPTS -pl :doma-spring-boot-core,:doma-spring-boot-autoconfigure,:doma-spring-boot-starter test -Dspring-boot.version=${{ matrix.spring-boot-version }} | |
- name: Upload reports | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: reports | |
path: ./**/target/surefire-reports | |
deploy: | |
if: github.event_name == 'push' && contains(github.event.head_commit.message, '[skip ci]') == false | |
runs-on: ubuntu-latest | |
needs: [ test-matrix ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: liberica | |
java-version: 17 | |
cache: maven | |
- name: Grant execute permission for mvnw | |
run: chmod +x mvnw | |
- name: Release Maven package | |
uses: samuelmeuli/action-maven-publish@v1 | |
with: | |
gpg_private_key: ${{ secrets.SIGNING_KEY }} | |
gpg_passphrase: ${{ secrets.SIGNING_PASSWORD }} | |
nexus_username: ${{ secrets.OSSRH_USERNAME }} | |
nexus_password: ${{ secrets.OSSRH_PASSWORD }} | |
- name: Upload reports | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: reports | |
path: ./**/target/surefire-reports |