Skip to content

fix: smart fizzy binary lookup to prevent circular resolution #15

fix: smart fizzy binary lookup to prevent circular resolution

fix: smart fizzy binary lookup to prevent circular resolution #15

Workflow file for this run

name: Test
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Run benchmarks
run: go test -bench=. -benchmem ./...
- name: Upload coverage
uses: codecov/codecov-action@v4
with:
file: ./coverage.txt
fail_ci_if_error: false