Skip to content

feat: add mqtt probe #60

feat: add mqtt probe

feat: add mqtt probe #60

Workflow file for this run

name: Run Unit Test
on:
push:
paths:
- "go.sum"
- "go.mod"
- "**.go"
pull_request:
paths:
- "go.sum"
- "go.mod"
- "**.go"
concurrency:
group: test-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '1.20.x'
- run: go install github.com/google/go-licenses@latest
- run: $(go env GOPATH)/bin/go-licenses check . --disallowed_types forbidden,restricted,unknown
- run: make test