Skip to content

- r Bump com.approvaltests:approvaltests from 25.8.0 to 25.10.0 #103

- r Bump com.approvaltests:approvaltests from 25.8.0 to 25.10.0

- r Bump com.approvaltests:approvaltests from 25.8.0 to 25.10.0 #103

Workflow file for this run

name: Build and Test
on: [push, pull_request]
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
java: [23]
steps:
- uses: actions/checkout@v6
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Build and Test
run: ./build_and_test.sh
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
if: success() || failure() # always run even if the previous step fails
with:
report_paths: '**/target/surefire-reports/*.xml'
detailed_summary: true
auto-merge:
needs: build
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v6
- name: auto-merge
if: |
github.actor == 'dependabot[bot]' &&
github.event_name == 'pull_request'
run: |
gh pr merge --auto --rebase "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
# this secret needs to be in the settings.secrets.dependabot
GITHUB_TOKEN: ${{secrets.GH_ACTION_TOKEN}}