Skip to content

refactor: move watch functions to dedicated file [Backport release-1.x] #883

refactor: move watch functions to dedicated file [Backport release-1.x]

refactor: move watch functions to dedicated file [Backport release-1.x] #883

Workflow file for this run

name: Continuous Integration
on:
pull_request:
push:
branches:
- main
- release-1.x
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- "1.21"
- "1.22"
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Run tests
run: go test -v ./...