Skip to content

Merge pull request #203 from wanghaoxi3000/new-fix #46

Merge pull request #203 from wanghaoxi3000/new-fix

Merge pull request #203 from wanghaoxi3000/new-fix #46

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
go: [1.13, 1.14, 1.15, 1.16]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: go get -u golang.org/x/lint/golint
- run: make check
- run: make release
- run: GO_VERSION=${{ matrix.go }} make unit-runtime