fix query params , for back compat #441
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: build | |
on: | |
push: | |
branches: | |
tags: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: disable and stop mono-xsp4.service (wtf?) | |
run: | | |
sudo systemctl stop mono-xsp4.service || true | |
sudo systemctl disable mono-xsp4.service || true | |
- name: set up go 1.18 | |
uses: actions/setup-go@v3 | |
with: | |
go-version: "1.18" | |
id: go | |
- name: launch mongodb | |
uses: wbari/[email protected] | |
with: | |
mongoDBVersion: "6.0" | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: build the example | |
working-directory: _example | |
run: | | |
go build -race | |
env: | |
TZ: "America/Chicago" | |
- name: build and test | |
run: | | |
go test -timeout=60s -v -race -p 1 -covermode=atomic -coverprofile=$GITHUB_WORKSPACE/profile.cov | |
go build -race | |
env: | |
TZ: "America/Chicago" | |
ENABLE_MONGO_TESTS: "true" | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: latest | |
- name: golangci-lint on example directory | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: latest | |
args: --config ../.golangci.yml | |
working-directory: _example | |
- 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 }} |