Skip to content

Bump actions/setup-go from 2 to 5 #20

Bump actions/setup-go from 2 to 5

Bump actions/setup-go from 2 to 5 #20

Workflow file for this run

---
name: Lint and test Go
on:
workflow_dispatch:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: Format
run: diff -u <(echo -n) <(gofmt -d -s .)
- name: Build
run: make build_debug
# We don't have tests yet
# go test -v ./...
- name: Vet
run: make test