Skip to content

fix: aligned the VRF table columns #866

fix: aligned the VRF table columns

fix: aligned the VRF table columns #866

Workflow file for this run

name: Go Tests
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.19'
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Get dependencies
run: go mod download
- name: Build
run: go build -v ./...
- name: Unit tests
run: go test -v -cover -parallel 4 $(go list ./... | grep -v /e2e)