Skip to content

chore: add health check test #25

chore: add health check test

chore: add health check test #25

Workflow file for this run

name: CI
on:
push:
paths:
- "**/*.go"
- ".github/workflows/ci.yaml"
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/[email protected]
- name: Setup Go
uses: actions/[email protected]
id: setup-go
with:
go-version-file: ./go.mod
cache-dependency-path: ./go.sum
- name: Download Go modules
shell: bash
if: ${{ steps.setup-go.outputs.cache-hit != 'true' }}
run: |
go mod download
go mod verify
- name: Test
run: make test
- name: Build
run: make build