Skip to content

Merge pull request #269 from go-pkgz/dependabot/go_modules/golang.org… #745

Merge pull request #269 from go-pkgz/dependabot/go_modules/golang.org…

Merge pull request #269 from go-pkgz/dependabot/go_modules/golang.org… #745

Workflow file for this run

name: build
on:
push:
branches:
tags:
paths-ignore:
- ".github/workflows/ci-v2.yml"
- "v2/**"
- "_example/**"
pull_request:
paths-ignore:
- ".github/workflows/ci-v2.yml"
- "v2/**"
- "_example/**"
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: checkout
uses: actions/checkout@v4
- name: set up go
uses: actions/setup-go@v5
with:
go-version: "1.24"
id: go
- name: launch mongodb
uses: wbari/start-mongoDB@v0.2
with:
mongoDBVersion: "6.0"
- 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@v7
with:
version: v2.6.2
- 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 }}