Skip to content

Build(deps): bump github.com/zonedb/zonedb from 1.0.4867 to 1.0.4876 #563

Build(deps): bump github.com/zonedb/zonedb from 1.0.4867 to 1.0.4876

Build(deps): bump github.com/zonedb/zonedb from 1.0.4867 to 1.0.4876 #563

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
strategy:
matrix:
go-version: ['oldstable', 'stable']
steps:
- name: Checkout repo
uses: actions/[email protected]
with:
submodules: recursive
- name: Set up Go
uses: actions/[email protected]
with:
go-version: ${{ matrix.go-version }}
# check-latest: true # not needed when using 'stable'
- name: Vet Go code
run: go vet ./...
- name: govulncheck
uses: golang/[email protected]
with:
cache: false
repo-checkout: false
- name: Run Go tests
run: go test -mod=readonly -v -race ./...
- name: Verify repo is unchanged
run: git diff --exit-code HEAD