Skip to content

fix: add cleanup of published ResourceSlices on shutdown #66

fix: add cleanup of published ResourceSlices on shutdown

fix: add cleanup of published ResourceSlices on shutdown #66

Workflow file for this run

name: CI
on:
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
unit-test:
name: Run Go Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- name: Download dependencies
run: go mod download
- name: Build
run: go build ./...
- name: Vet
run: go vet ./...
- name: Run tests
run: go test ./... -v