Skip to content

ci: fix lint, markdown links, and build #790

ci: fix lint, markdown links, and build

ci: fix lint, markdown links, and build #790

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v .
- name: Test
run: |
export PATH=$PATH:$(go env GOPATH)/bin
go test -v ./...