chore: enter prerelease mode #179
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
| name: Functional Tests | |
| on: | |
| push: | |
| branches-ignore: | |
| - main | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 5 * * *' | |
| jobs: | |
| set_datadog_team: | |
| name: 'Set Datadog team' | |
| uses: fingerprintjs/dx-team-toolkit/.github/workflows/set-datadog-team.yml@v1 | |
| secrets: | |
| DD_API_KEY: ${{ secrets.INTEGRATIONS_DATADOG_API_KEY }} | |
| functional_tests: | |
| name: "Functional Tests Java ${{ matrix.java }}" | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| java: [ '11', '17', '21', '25' ] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| # Gradle will detect the JVM installation from the ubuntu-latest image and use it | |
| - run: ./gradlew runFunctionalTests -PjavaVersion=${{ matrix.java }} --stacktrace | |
| env: | |
| FPJS_API_SECRET: "${{ secrets.FPJS_API_SECRET }}" | |
| FPJS_API_REGION: "${{ secrets.FPJS_API_REGION }}" | |