Skip to content

feat: multi-validator bash demo #74

feat: multi-validator bash demo

feat: multi-validator bash demo #74

Workflow file for this run

name: Go Test
on:
pull_request:
push:
tags:
- '**'
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod # Use whatever version is in the header of go.mod.
- name: Vendor and patch SDK
run: make deps
env:
GIT_AUTHOR_NAME: github actions
GIT_AUTHOR_EMAIL: nobody@example.com
GIT_COMMITTER_NAME: github actions
GIT_COMMITTER_EMAIL: nobody@example.com
- name: Test
run: go test -timeout=5m ./...