Skip to content

Add function to watch for db document changes #22

Add function to watch for db document changes

Add function to watch for db document changes #22

Workflow file for this run

name: go
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...