Bump gopkg.in/yaml.v3 from 3.0.0-20210107192922-496545a6307b to 3.0.0 #131
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
name: Merge check | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Merge check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.13 | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.13 | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v1 | |
- name: Build | |
run: go build -v . | |
- name: Fmt | |
run: | | |
bash scripts/ci/formatChecker.sh | |
- name: Misspell | |
run: | | |
go get -u github.com/client9/misspell/cmd/misspell | |
bash scripts/ci/formatChecker.sh | |
- name: Lint | |
run: | | |
go get -u golang.org/x/lint/golint | |
bash scripts/ci/goLintChecker.sh | |
- name: UT | |
run: | | |
go get github.com/stretchr/testify | |
go get golang.org/x/tools/cmd/cover | |
bash scripts/ci/unit_test.sh |