Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches: ["main", "master"]
tags: ["v*"]
pull_request:
jobs:
build-with-xk6:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.22.x
- name: Install xk6
run: go install go.k6.io/xk6/cmd/xk6@latest
- name: Build
run: make build
- name: Test
run: make test