Skip to content

Update modules, github actions, golangci-lint configuration #27

Update modules, github actions, golangci-lint configuration

Update modules, github actions, golangci-lint configuration #27

Workflow file for this run

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@v5
with:
go-version: "1.19"
id: go
- name: launch mongodb
uses: wbari/[email protected]
with:
mongoDBVersion: "5.0"
- name: checkout
uses: actions/checkout@v4
- name: build and test
run: |
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@v6
with:
version: latest
- name: submit coverage
run: |
go install github.com/mattn/goveralls@latest
goveralls -service="github" -coverprofile=$GITHUB_WORKSPACE/profile.cov
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}