Skip to content

Move to /healthz

Move to /healthz #131

Workflow file for this run

on: [push]
jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
go-version: 1.23
- name: Lint
uses: golangci/[email protected]
with:
version: latest
- name: Format check
run: go fmt ./...
- name: Static analysis
run: go vet ./...
- name: Test
run: go test -coverprofile=coverage.out ./...
- name: Upload test coverage report
uses: codecov/[email protected]
with:
file: ./coverage.out
token: ${{ secrets.CODECOV_TOKEN }}