min_host and max_counter_host tags are passed through conveyor #1134
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
branches: | |
- master | |
paths: | |
- '**.go' | |
- 'go.mod' | |
- 'go.sum' | |
jobs: | |
ci-go: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19.x | |
cache: true | |
- uses: golangci/golangci-lint-action@v3 | |
with: | |
args: --timeout=10m --disable-all -E goimports | |
- uses: dominikh/[email protected] | |
with: | |
install-go: false | |
- run: go test -v -race ./... |