Skip to content

Commit 68090c9

Browse files
committed
Add Cloud integration
Signed-off-by: Daniel González Lopes <[email protected]>
1 parent 2c011af commit 68090c9

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/test.yaml

+10-3
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,25 @@ on:
55
jobs:
66
protocol:
77
runs-on: ubuntu-latest
8+
env:
9+
K6_CLOUD_TOKEN: ${{ secrets.K6_CLOUD_TOKEN }}
10+
K6_CLOUD_PROJECT_ID: ${{ secrets.K6_CLOUD_PROJECT_ID }}
811
steps:
912
- uses: actions/checkout@v4
1013
- name: Setup Grafana k6
1114
uses: grafana/[email protected]
1215
with:
1316
k6-version: '0.49.0'
14-
- name: Run k6 tests
15-
uses: ./
17+
- uses: ./
1618
continue-on-error: true
1719
with:
1820
path: |
1921
./dev/protocol*.js
2022
flags: --vus 10 --duration 20s
2123
parallel: true
22-
fail-fast: false
24+
- uses: ./
25+
continue-on-error: true
26+
with:
27+
path: |
28+
./dev/protocol*.js
29+
flags: --vus 10 --duration 20s

0 commit comments

Comments
 (0)