Skip to content

fix(deps): update module go.k6.io/k6 to v0.55.0 #258

fix(deps): update module go.k6.io/k6 to v0.55.0

fix(deps): update module go.k6.io/k6 to v0.55.0 #258

name: lint_and_test
on:
push:
jobs:
golangci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
cache-dependency-path: |
go.sum
- uses: jdx/mise-action@v2
- name: add go bin to GITHUB PATH
run: |
echo "$(go env GOROOT)/bin" >> $GITHUB_PATH
- name: go mod tidy
run: go mod tidy
- name: make install go tools
run: make install-go-tools
- name: pre-commit install
run: pre-commit install
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.61.0
- name: build
run: make build
- name: testing
run: make test