added new @link tag for dynamic rules, test #1871
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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.16", | |
uses: "actions/setup-go@v1", | |
"with": {"go-version": 1.16}, | |
id: "go", | |
}, | |
{name: "Check out code into the Go module directory", uses: "actions/checkout@v1"}, | |
{name: "Tests and lints", run: "make check"}, | |
], | |
}, | |
}, | |
} |