@Pierluca's and @jbsv's comments #308
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 Integration Test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
integration: | |
name: Integration test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Use Go 1.20 | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Run the integration test | |
run: go test -timeout 10m -run TestIntegration ./integration/... | |
bad_vote: | |
name: Test bad vote | |
runs-on: ubuntu-latest | |
steps: | |
- name: Use Go 1.20 | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Run the bad vote test | |
run: go test -timeout 10m -run TestBadVote ./integration/... | |
crash: | |
name: Test crash | |
runs-on: ubuntu-latest | |
steps: | |
- name: Use Go 1.20 | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Run the crash test | |
run: | | |
for a in $( seq 3 ); do | |
echo "Testing sequence $a" | |
go test -timeout 10m -run TestCrash ./integration/... && exit 0 | |
done | |
exit 1 | |
revote: | |
name: Test revote | |
runs-on: ubuntu-latest | |
steps: | |
- name: Use Go 1.20 | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Run the revote test | |
run: go test -timeout 10m -run TestRevote ./integration/... |