Skip to content

improve comments formatting #12

improve comments formatting

improve comments formatting #12

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.20",
"uses": "actions/setup-go@v1",
"with": {"go-version": 1.20},
"id": "go",
},
{"name": "Check out code into the Go module directory", "uses": "actions/checkout@v1"},
{"name": "Linter", "run": "make ci-lint"},
{"name": "Test", "run": "make test"},
],
},
},
}