Skip to content

Restore GitHub Actions CI and release workflows #18

Restore GitHub Actions CI and release workflows

Restore GitHub Actions CI and release workflows #18

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.21"
- run: go build ./...
- run: go vet ./...