Skip to content

Update go.starlark.net digest to bf296ed #234

Update go.starlark.net digest to bf296ed

Update go.starlark.net digest to bf296ed #234

Workflow file for this run

name: Go
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
env:
GOCACHE: "/tmp/go-cache"
GOMODCACHE: "/tmp/go-mod-cache"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
cache: true
cache-dependency-path: go.sum
- name: Display Go version
run: go version
- name: go mod tidy (fails if changes are needed)
run: go mod tidy --diff
- name: Go test
run: make test