feat: txstore wiring through server #85
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: | |
- main | |
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: [email protected] | |
GIT_COMMITTER_NAME: github actions | |
GIT_COMMITTER_EMAIL: [email protected] | |
- name: Test | |
run: go test -timeout=5m ./... |