chore(deps): Bump de.cuioss.sheriff.oauth:benchmarking-common #65
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
| # Runs integration/E2E tests via Maven with report deployment to cuioss.github.io. | |
| name: Integration Tests | |
| on: | |
| push: | |
| branches: [main, "feature/*", "fix/*", "chore/*", "release/*", "dependabot/**"] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| integration-tests: | |
| # Run on push events, OR on pull_request only if from a fork | |
| # This prevents duplicate runs: push handles internal branches, PR handles forks | |
| if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
| uses: cuioss/cuioss-organization/.github/workflows/reusable-maven-integration-tests.yml@2569924aa94ecef006ab4c96db06f43b051e5dbd # v0.6.5 | |
| with: | |
| report-name: integration-tests | |
| maven-args-input: | | |
| verify -Pintegration-tests -pl integration-tests -am | |
| reports-folder: | | |
| integration-tests/target/failsafe-reports | |
| secrets: | |
| RELEASE_APP_ID: ${{ secrets.RELEASE_APP_ID }} | |
| RELEASE_APP_PRIVATE_KEY: ${{ secrets.RELEASE_APP_PRIVATE_KEY }} |