Skip to content

Commit

Permalink
usinig actions/setup-go
Browse files Browse the repository at this point in the history
  • Loading branch information
dagfinno committed Sep 26, 2024
1 parent 9dee08a commit 22ddf5a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/run_k6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,16 @@ on:
jobs:
run-test:
runs-on: ubuntu-latest
container: docker://golang:1.23-alpine
#container: docker://golang:1.23-alpine
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup go
uses: actions/setup-go@v5
with:
go-version: 'stable'

- name: Install xk6
run: go install go.k6.io/xk6/cmd/xk6@latest

Expand Down Expand Up @@ -57,7 +62,7 @@ jobs:

- name: Upload HTML report to Azure
if: always()
shell: sh
shell: bash
run: |
REPORT_DIR='taxreports'
azcopy cp --recursive "performance-tests/test/src/*.html" "https://altinnloadtests.blob.core.windows.net/\$web/$REPORT_DIR"
Expand Down

0 comments on commit 22ddf5a

Please sign in to comment.