feat: hide elections on blocklist #303
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 Scenario Test (with proxy) | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Use Go 1.20 | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
- name: Install crypto util from Dela | |
run: | | |
git clone https://github.com/c4dt/dela.git | |
cd dela | |
go install ./cli/crypto | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Create a private key | |
run: crypto bls signer new --save private.key | |
- name: Install dvoting | |
run: make build | |
- name: Start and setup 5 nodes | |
run: ./runSystems.sh -n 5 --docker false --backend false --frontend false --attach false | |
- name: Run the scenario Test | |
run: go test -timeout 7m -run TestScenario ./integration/... |