Skip to content

Remove local health port binding, check upstream directly, and fix Docker PR CI #18

Remove local health port binding, check upstream directly, and fix Docker PR CI

Remove local health port binding, check upstream directly, and fix Docker PR CI #18

Workflow file for this run

name: Test
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: "1.24"
- name: Format check
run: |
go fmt ./...
git diff --exit-code
- name: Vet
run: go vet ./...
- name: Test
run: go test -v -race ./...