Skip to content

Get some very basic CI working #3

Get some very basic CI working

Get some very basic CI working #3

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
name: Build
runs-on: [self-hosted, small]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
- name: Build
run: go build ./...