Update basic.yml #11
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: Basic Workflow | |
on: [push] | |
jobs: | |
k6_local_test: | |
name: k6 local test run - basic example | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Setup Grafana k6 | |
uses: grafana/[email protected] | |
- name: Run Grafana k6 tests | |
uses: grafana/[email protected] | |
with: | |
path: script.js | |
flags: --out dashboard=export=test-report.html | |
- name: Upload performance test results | |
uses: actions/[email protected] | |
with: | |
name: k6-report | |
path: test-report.html |