add skipping of offline validators v5 with intercept of slow tx #295
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: Check build | |
on: | |
push: | |
pull_request: | |
branches: | |
- develop | |
- master | |
jobs: | |
check-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Golang dependency | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '^1.18' | |
- name: Run unit tests | |
run: go test ./... | |
- name: Build | |
run: make x1 |