Skip to content

updated github actions #1865

updated github actions

updated github actions #1865

Workflow file for this run

# This file adheres to the YAML5 style.
{
name: "Go",
on: ["push", "pull_request"],
jobs: {
build: {
name: "Build",
"runs-on": "ubuntu-latest",
steps: [
{
name: "Set up Go 1.21",
uses: "actions/setup-go@v5",
"with": {"go-version": 1.21},
id: "go",
},
{name: "Check out code into the Go module directory", uses: "actions/checkout@v4"},
{name: "Tests and lints", run: "make check"},
],
},
},
}