Skip to content

Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.5.0 to 3.5.1 #91

Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.5.0 to 3.5.1

Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.5.0 to 3.5.1 #91

Workflow file for this run

# 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/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
name: testing
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml -Dmctf.report.dir=latest
- name: Save flow execution reports
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
id: artifact-upload-step
if: success() || failure()
with:
name: flow_execution_reports
path: |
app/target/mctf/latest
test/target/mctf/browser/latest
- name: Emit artifact links
if: success() || failure()
run: |
echo " * [bowlby isolation testing](https://bowlby.flowty.dev/self/artifacts/therealryan/bowlby/${{ steps.artifact-upload-step.outputs.artifact-id }}/app/target/mctf/latest/index.html)" >> $GITHUB_STEP_SUMMARY
echo " * [browser isolation testing](https://bowlby.flowty.dev/self/artifacts/therealryan/bowlby/${{ steps.artifact-upload-step.outputs.artifact-id }}/test/target/mctf/browser/latest/index.html)" >> $GITHUB_STEP_SUMMARY