Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.4.0 to 3.5.0 #168
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
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | |
# For more information see: https://docs.github.com/actions/automating-builds-and-tests/building-and-testing-java-with-maven | |
name: Java CI with Maven on Pull | |
on: | |
pull_request: | |
branches: [ "main" ] | |
push: | |
branches: [ "actions"] #Allows testing Actions changes in a fork | |
schedule: | |
- cron: "0 12 * * 1-5" | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
services: | |
mongo: | |
image: mongo:7.0.7 | |
env: | |
POSTGRES_USER: sampleUser | |
POSTGRES_PASSWORD: openliberty | |
POSTGRES_DB: testdb | |
# Set health checks to wait until postgres has started | |
options: >- | |
--health-cmd "echo 'db.runCommand("ping").ok' | mongosh --quiet" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 27017:27017 | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@6a0805fcefea3d4657a47ac4c165951e33482018 # v4.2.2 | |
with: | |
java-version: 21 | |
distribution: 'temurin' | |
cache: maven | |
- name: Compile App and Tests | |
run: | | |
mvn -B compiler:compile | |
mvn -B compiler:testCompile | |
- name: Create Server and Deploy App | |
run: | | |
mvn -B liberty:create | |
mvn -B liberty:deploy | |
- name: Start Server | |
run: mvn -B liberty:start | |
- name: Run Integration Tests | |
run: mvn -B failsafe:integration-test | |
- name: Stop Server | |
run: mvn -B liberty:stop | |
- name: Verify Integration Test Results | |
run: mvn -B failsafe:verify | |
- name: Archive Liberty logs | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: liberty-logs | |
path: target/liberty/wlp/usr/servers/JakartaConcurrencyServer/logs/ | |
retention-days: 1 |