Skip to content

docs: restructure Kola README for clarity and completeness #1776

docs: restructure Kola README for clarity and completeness

docs: restructure Kola README for clarity and completeness #1776

Workflow file for this run

name: Go
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: './go.mod'
- name: Build
run: make
- name: Test
run: make test