add missing CODEOWNERS files #22
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: build | |
on: | |
push: | |
branches: | |
tags: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: set up go 1.15 | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.15 | |
id: go | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: build and test | |
run: | | |
export GO111MODULE=on | |
export TZ="America/Chicago" | |
go get -v | |
go test -timeout=60s -v -covermode=count -coverprofile=$GITHUB_WORKSPACE/profile.cov_tmp | |
cat $GITHUB_WORKSPACE/profile.cov_tmp | grep -v "_mock.go" > $GITHUB_WORKSPACE/profile.cov | |
- name: install golangci-lint and goveralls | |
run: | | |
curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b $GITHUB_WORKSPACE v1.31.0 | |
GO111MODULE=off go get -u -v github.com/mattn/goveralls | |
- name: run linters | |
run: $GITHUB_WORKSPACE/golangci-lint run | |
- name: submit coverage | |
run: $(go env GOPATH)/bin/goveralls -service="github" -coverprofile=$GITHUB_WORKSPACE/profile.cov | |
env: | |
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} |