Update load_test.yml #14
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: Test Locust Load Test | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Run Load Test | |
id: locust_run | |
uses: BerriAI/locust-github-action@master | |
with: | |
LOCUSTFILE: ".github/workflows/locustfile.py" | |
URL: "https://litellm-api.up.railway.app/" | |
USERS: "5" | |
RATE: "5" | |
RUNTIME: "10s" | |
# Echo the content of the current directory | |
- name: Echo Current Directory Contents | |
run: ls -al | |
# Read the example.csv file | |
- name: Read example.csv | |
run: cat example.csv |