feat: multi-validator bash demo #74
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ./... |