Test Tally Elections Tool #1
This file contains hidden or 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: Tally Elections Tool | |
run-name: Test Tally Elections Tool | |
on: | |
pull_request: | |
paths: | |
- 'elections/tools/**' | |
jobs: | |
tally_test: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "The name of the branch is ${{ github.ref }} and the repository is ${{ github.repository }}." | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.24.x' | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Run unit tests and fuzzer | |
run: cd ${{ github.workspace }}/elections/tools && make fuzztimed |