chore: trigger integration workflow after submodule fix #9
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: Maven Online Tests | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| pull_request: | |
| jobs: | |
| maven-online-tests: | |
| name: Maven Online Tests (Java 25) | |
| runs-on: ubuntu-latest | |
| env: | |
| DBC_USERNAME: ${{ secrets.DBC_USERNAME }} | |
| DBC_PASSWORD: ${{ secrets.DBC_PASSWORD }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Java 25 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: 25 | |
| cache: maven | |
| - name: Run Maven online integration test | |
| run: mvn --batch-mode --errors --fail-at-end --show-version -Djava.release=25 -Dtest=OnlineMavenBalanceIntegrationTest test | |
| - name: Upload Maven online test results | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: maven-online-test-results | |
| path: target/surefire-reports/ |