Skip to content

chore(deps): bump go.mongodb.org/mongo-driver from 1.15.0 to 1.16.0 #159

chore(deps): bump go.mongodb.org/mongo-driver from 1.15.0 to 1.16.0

chore(deps): bump go.mongodb.org/mongo-driver from 1.15.0 to 1.16.0 #159

Workflow file for this run

name: Go
on:
pull_request:
branches: [ "dev", "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21.5'
- name: Build main application
run: |
go build -v -o konsume ./cmd/...
go build -v -o konsume main.go
- name: Build plugin
run: go build -v -buildmode=plugin -o plugin/postgresql/postgres.so ./plugin/postgresql
- name: Test with coverage
run: go test ./pkg/... -race -coverprofile=coverage.txt -covermode=atomic
- name: Codecov
uses: codecov/[email protected]
with:
files: ./coverage.txt