Re add nexus pipeline stage and fix error with github url #954
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: run tests | |
| on: | |
| push: | |
| tags-ignore: | |
| - "*" | |
| branches: | |
| - "**" | |
| jobs: | |
| test: | |
| runs-on: ubuntu-22.04 | |
| concurrency: blazemeter_test | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: 11 | |
| cache: maven | |
| - uses: browser-actions/setup-chrome@v1 | |
| - name: Run maven tests | |
| run: mvn --batch-mode --no-transfer-progress clean install | |
| env: | |
| BZ_TOKEN: ${{ secrets.BZ_TOKEN }} | |
| OCTOPERF_API_KEY: ${{ secrets.OCTOPERF_API_KEY }} | |
| AZURE_CREDS: ${{ secrets.AZURE_CREDS }} | |
| DATADOG_API_KEY: ${{ secrets.DATADOG_API_KEY }} | |
| DATADOG_APPLICATION_KEY: ${{ secrets.DATADOG_APPLICATION_KEY }} |