fix: update dashboards to use service instead of exported_service #192
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: build | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| GO111MODULE: "on" | |
| steps: | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: stable | |
| check-latest: true | |
| - uses: actions/checkout@v4 | |
| - run: go mod download | |
| - run: go build -v ./... | |
| - run: go test -v -cover -timeout=30s ./... |