Skip to content

implement watcher that gets trigged by db changes #34

implement watcher that gets trigged by db changes

implement watcher that gets trigged by db changes #34

Workflow file for this run

name: Main
on: [ push ]
jobs:
test:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
version: [ '4.4', '5', '6', '7' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21.4'
- name: Run Ginkgo Tests on Mongo ${{ matrix.version }}
run: MONGO_VERSION=${{ matrix.version }} go run github.com/onsi/ginkgo/v2/ginkgo -r -v ./...
golangci:
name: Golang CI Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21.4'
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v4
with:
version: v1.54
skip-pkg-cache: true