tests: fix load tests #7
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: Load tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
load-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-rust | |
with: | |
cache-key: "build-native" | |
- uses: ./.github/actions/setup-node | |
- uses: ./.github/actions/setup-dfx | |
- name: Prepare environment for load tests | |
run: ./scripts/prepare_tests.sh | |
- name: Execute load tests | |
run: ./scripts/ci_cd_test_load.sh |