Skip to content

pull-runtime-watcher #830

pull-runtime-watcher

pull-runtime-watcher #830

name: pull-runtime-watcher
on: [pull_request, workflow_dispatch]
jobs:
lint-build-test-runtime-watcher:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./runtime-watcher
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.23.6'
cache: false
- name: Lint
uses: golangci/golangci-lint-action@051d91933864810ecd5e2ea2cfd98f6a5bca5347 # v6.3.2
with:
version: v1.63.4
args: --verbose
working-directory: ./runtime-watcher
- name: Build
run: go build -v -o bin/webhook main.go
- name: Test
run: make test