feat:nacos v2 #103
Workflow file for this run
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: Push Check | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.16 | |
- uses: actions/cache@v2 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Prepare Nacos | |
run: | | |
make prepare | |
- name: Check License Header | |
uses: apache/skywalking-eyes/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: typos-action | |
uses: crate-ci/[email protected] | |
- name: Lint | |
run: | | |
go vet -stdmethods=false $(go list ./...) | |
go install mvdan.cc/[email protected] | |
test -z "$(gofumpt -l -extra .)" | |
- name: Unit Test | |
run: go test -v -race -covermode=atomic -coverprofile=coverage.out ./... | |
env: | |
serverAddr: 127.0.0.1 | |
serverPort: 8848 | |
namespace: public | |
- name: Benchmark | |
run: go test -bench=. -benchmem -run=none ./... |