Skip to content

Change search related callbacks so that they are set on gui rather than each view #119

Change search related callbacks so that they are set on gui rather than each view

Change search related callbacks so that they are set on gui rather than each view #119

Workflow file for this run

name: Continuous Integration
env:
GO_VERSION: 1.25
on:
push:
branches:
- master
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.25.x
- name: Test code
run: |
go test ./...
- name: Check go.mod file
# ensure our go.mod file is clean
run: |
go mod tidy && git diff --exit-code || (echo "go.mod file is not clean. Run 'go mod tidy' locally and commit the changes" && exit 1)