Fixes reported issue with headers inheritance when using jsr223Sample… #837
This file contains 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-latest | |
concurrency: blazemeter_test | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 8 | |
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 }} |