Remove unused thread pool latency metric #779
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: checks | |
| on: | |
| - pull_request | |
| - workflow_dispatch | |
| env: | |
| TERM: xterm | |
| REVIVE_FORCE_COLOR: 1 | |
| jobs: | |
| test: | |
| name: run-testcases | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| go_version: ['1.23.8'] | |
| # services: | |
| # redis: | |
| # image: redis:5.0-alpine | |
| # ports: | |
| # - 6379:6379 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v4 | |
| with: | |
| go-version: ${{ matrix.go_version }} | |
| cache: true | |
| - name: start services | |
| run: docker compose up -d | |
| - name: run testcases | |
| run: make test2 | |
| - name: benchmark | |
| run: make bench | |
| - name: linter | |
| run: make lint | |
| - name: vet | |
| run: make vet | |