update deps #21
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.19 | |
uses: actions/setup-go@v3 | |
with: | |
go-version: "1.19" | |
id: go | |
- name: launch mongodb | |
uses: wbari/[email protected] | |
with: | |
mongoDBVersion: "5.0" | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: build and test | |
run: | | |
export GO111MODULE=on | |
export TZ="America/Chicago" | |
export MONGO_TEST=mongodb://127.0.0.1:27017 | |
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: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: latest | |
- name: install goveralls | |
run: | | |
GO111MODULE=off go get -u -v github.com/mattn/goveralls | |
- name: submit coverage | |
run: $(go env GOPATH)/bin/goveralls -service="github" -coverprofile=$GITHUB_WORKSPACE/profile.cov | |
env: | |
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} |