Skip to content

chore(ci): run build on all branches #72

chore(ci): run build on all branches

chore(ci): run build on all branches #72

Workflow file for this run

name: build
on:
push:
branches:
- "*"
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
- ".github/workflows/**"
pull_request:
branches:
- "main"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.25.0"
- name: Build
run: go build -v ./...
- name: Vet
run: go vet ./...
- name: Test
run: go test ./...