This repository has been archived by the owner on Jul 16, 2024. It is now read-only.
Use lower case k in k6 #65
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: Main Workflow | |
on: [push] | |
jobs: | |
build: | |
name: Run load test using the action | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run load test using action code from commit | |
uses: ./ | |
with: | |
cloud: true | |
token: ${{ secrets.K6_TOKEN }} | |
flags: --vus 1 --duration 10s | |
- name: Run load test using actions tarball | |
uses: grafana/k6-action@HEAD | |
with: | |
cloud: true | |
token: ${{ secrets.K6_TOKEN }} | |
flags: --vus 1 --duration 10s | |