Skip to content

[APERTURE-1005] Add Metric start for connection pool #17

[APERTURE-1005] Add Metric start for connection pool

[APERTURE-1005] Add Metric start for connection pool #17

Workflow file for this run

name: Unit Test
on:
pull_request:
types: [opened, synchronize, ready_for_review]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
- name: Start up docker compose
run: docker compose -f docker-compose.yaml up -d --remove-orphans
- name: Run Tests
run: go test -v -race -p=6 -cpu=1,4 ./...
- name: Stop containers
if: always()
run: docker compose -f docker-compose.yaml down