Skip to content

feat: custom handler config (#14) #17

feat: custom handler config (#14)

feat: custom handler config (#14) #17

Workflow file for this run

name: build
on:
push:
branches:
- 'main'
pull_request:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
env:
GO111MODULE: "on"
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.60
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -race ./... -cover