Skip to content

build(deps): bump github.com/zonedb/zonedb from 1.0.4551 to 1.0.4564 #568

build(deps): bump github.com/zonedb/zonedb from 1.0.4551 to 1.0.4564

build(deps): bump github.com/zonedb/zonedb from 1.0.4551 to 1.0.4564 #568

Workflow file for this run

name: Go
on:
push:
branches:
- main
pull_request:
workflow_dispatch: # Enables the web UI manual trigger
jobs:
test:
name: Test
runs-on: ubuntu-22.04
timeout-minutes: 15
steps:
- name: Checkout repo
uses: actions/checkout@v4.1.1
with:
submodules: recursive
- name: Set up Go
uses: actions/setup-go@v5.0.0
with:
go-version: ^1
- name: Vet Go code
run: go vet ./...
- name: Run Go tests
run: go test -mod=readonly -v -race ./...
- name: Verify repo is unchanged
run: git diff --exit-code HEAD