Skip to content

Add build workflow

Add build workflow #1

Workflow file for this run

name: k6 - Test Suite
on: [push]
jobs:
runner-job:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
- name: Check Formatting
run: make format-check
- name: Build Binary
run: make build