Skip to content

fix: use size of Base64-encoded ID to calculate ballot length for decryption #291

fix: use size of Base64-encoded ID to calculate ballot length for decryption

fix: use size of Base64-encoded ID to calculate ballot length for decryption #291

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/...