Skip to content

chore: add release workflow #5

chore: add release workflow

chore: add release workflow #5

Workflow file for this run

name: Build Go
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up go
uses: actions/setup-go@v3
with:
go-version: 1.22.5
- name: Build
run: go build ./...