Skip to content

Merge commit 'b9d0d94214a3ee03f578b769e060367c2b01cbb8' #96

Merge commit 'b9d0d94214a3ee03f578b769e060367c2b01cbb8'

Merge commit 'b9d0d94214a3ee03f578b769e060367c2b01cbb8' #96

Workflow file for this run

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