feat(artillery): add ability to specify scenario to run by name #297
Workflow file for this run
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: Examples | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
workflow_dispatch: | |
env: | |
ARTILLERY_BINARY_PATH: ${{ github.workspace }}/packages/artillery/bin/run | |
jobs: | |
http-metrics-by-endpoint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
env: | |
CWD: ./examples/http-metrics-by-endpoint | |
defaults: | |
run: | |
working-directory: ${{ env.CWD }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install | |
run: npm ci | |
- name: Test | |
uses: artilleryio/action-cli@v1 | |
with: | |
command: run ./endpoint-metrics.yml | |
working-directory: ${{ env.CWD }} | |
env: | |
ARTILLERY_BINARY_PATH: ${{ env.ARTILLERY_BINARY_PATH }} | |
multiple-scenarios-spec: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
env: | |
CWD: ./examples/multiple-scenario-specs | |
defaults: | |
run: | |
working-directory: ${{ env.CWD }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install | |
run: npm ci | |
- name: Run armadillo scenario | |
uses: artilleryio/action-cli@v1 | |
with: | |
command: run --config ./common-config.yml ./scenarios/armadillo.yml | |
working-directory: ${{ env.CWD }} | |
env: | |
ARTILLERY_BINARY_PATH: ${{ env.ARTILLERY_BINARY_PATH }} | |
- name: Run dino scenario | |
uses: artilleryio/action-cli@v1 | |
with: | |
command: run --config ./common-config.yml ./scenarios/dino.yml | |
working-directory: ${{ env.CWD }} | |
env: | |
ARTILLERY_BINARY_PATH: ${{ env.ARTILLERY_BINARY_PATH }} | |
using-data-from-csv: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
env: | |
CWD: ./examples/using-data-from-csv | |
defaults: | |
run: | |
working-directory: ${{ env.CWD }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install | |
run: npm ci | |
- name: Test | |
uses: artilleryio/action-cli@v1 | |
with: | |
command: run ./website-test.yml | |
working-directory: ${{ env.CWD }} | |
env: | |
ARTILLERY_BINARY_PATH: ${{ env.ARTILLERY_BINARY_PATH }} |