feat(config): add option to control debug log printing for loaded con… #6988
Workflow file for this run
This file contains hidden or 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
| name: Go | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| go: [1.22.x, 1.23.x, 1.24.x, 1.25.x] | |
| name: build & test | |
| runs-on: ubuntu-latest | |
| services: | |
| etcd: | |
| image: gcr.io/etcd-development/etcd:v3.5.0 | |
| ports: | |
| - 2379:2379 | |
| env: | |
| ETCD_LISTEN_CLIENT_URLS: http://0.0.0.0:2379 | |
| ETCD_ADVERTISE_CLIENT_URLS: http://0.0.0.0:2379 | |
| consul: | |
| image: hashicorp/consul:1.20 | |
| ports: | |
| - 8500:8500 | |
| nacos: | |
| image: nacos/nacos-server:v2.1.0 | |
| env: | |
| MODE: standalone | |
| ports: | |
| - "8848:8848" | |
| - "9848:9848" | |
| polaris: | |
| image: polarismesh/polaris-standalone:latest | |
| ports: | |
| - 8090:8090 | |
| - 8091:8091 | |
| - 8093:8093 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| - name: Setup Environment | |
| run: | | |
| echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV | |
| echo "$(go env GOPATH)/bin" >> $GITHUB_PATH | |
| - name: Module cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.cache/go-build | |
| ~/go/pkg/mod | |
| key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
| restore-keys: | | |
| ${{ runner.os }}-go | |
| - name: Build | |
| run: go build ./... | |
| env: | |
| GOTOOLCHAIN: auto | |
| - name: Test | |
| run: make test-coverage | |
| env: | |
| GOTOOLCHAIN: auto | |
| - name: Upload coverage to Codecov | |
| run: bash <(curl -s https://codecov.io/bash) | |
| - name: Kratos | |
| run: | | |
| cd cmd/kratos | |
| go build ./... | |
| go test ./... | |
| env: | |
| GOTOOLCHAIN: auto | |
| - name: HTTP | |
| run: | | |
| cd cmd/protoc-gen-go-http | |
| go build ./... | |
| go test ./... | |
| env: | |
| GOTOOLCHAIN: auto |