runtimeclass-debugger: edge-node diagnostic tool for the KubeEdge RuntimeClass path

This commit is contained in:
lakshit verma 2026-08-08 00:35:22 +05:30
commit d2c0cd4d9a
No known key found for this signature in database
26 changed files with 2474 additions and 0 deletions

32
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,32 @@
name: ci
on:
push:
branches: [main, master]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25.x'
- name: Build
run: go build ./...
- name: Vet
run: go vet ./...
- name: Test
run: go test ./...
- name: Lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.64