Skip to content

platform: detect: add functions which take clients #803

platform: detect: add functions which take clients

platform: detect: add functions which take clients #803

Workflow file for this run

name: CI Go
on:
pull_request:
branches:
- "main"
- "release-*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: set up golang
uses: actions/setup-go@v5
with:
go-version: 1.23
- name: format
run: ./hack/check-format.sh
- name: fix the version
run: make update-version
- name: go vetting
run: make vet
- name: build
run: |
go version
make all
- name: test
run: make test-unit