Skip to content
This repository has been archived by the owner on Oct 20, 2024. It is now read-only.

Reduce the diff between tracing and binary search estimation #49

Reduce the diff between tracing and binary search estimation

Reduce the diff between tracing and binary search estimation #49

Workflow file for this run

name: core
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
cache: true
- name: Install dependencies
run: go mod download
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
cache: true
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.51.0