Skip to content

Improve health checker abstraction #76

Improve health checker abstraction

Improve health checker abstraction #76

Workflow file for this run

name: Go
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: go build
run: go build ./...
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.54.2
skip-go-installation: true
args: --timeout 3m --verbose