Skip to content

Bump github.com/uber/h3-go/v4 from 4.1.1 to 4.1.2 (#22) #78

Bump github.com/uber/h3-go/v4 from 4.1.1 to 4.1.2 (#22)

Bump github.com/uber/h3-go/v4 from 4.1.1 to 4.1.2 (#22) #78

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.21", "1.22"]
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
args: --timeout=5m
- name: Run coverage
run: go test -race -coverprofile=coverage.txt -covermode=atomic
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
- name: Bench
run: go test -bench=. ./...