manual-e2e-main #4
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
# manually run full E2E test suite | |
# all tests are run sequentially | |
name: manual-e2e-main | |
on: | |
workflow_dispatch: | |
jobs: | |
happy-path-test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v3 | |
- name: E2E Setup | |
uses: ./.github/actions/action-e2e-setup | |
- name: E2E happy-path test | |
run: go run ./tests/e2e/... --tc happy-path | |
changeover-test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" | |
- uses: actions/checkout@v3 | |
- name: Checkout LFS objects | |
run: git lfs checkout | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" # The Go version to download (if necessary) and use. | |
- name: E2E changeover test | |
run: go run ./tests/e2e/... --tc changeover | |
democracy-reward-test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" | |
- uses: actions/checkout@v3 | |
- name: Checkout LFS objects | |
run: git lfs checkout | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" # The Go version to download (if necessary) and use. | |
- name: E2E democracy-reward tests | |
run: go run ./tests/e2e/... --tc democracy-reward | |
democracy-test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" | |
- uses: actions/checkout@v3 | |
- name: Checkout LFS objects | |
run: git lfs checkout | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" # The Go version to download (if necessary) and use. | |
- name: E2E democracy tests | |
run: go run ./tests/e2e/... --tc democracy | |
slash-throttle-test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" | |
- uses: actions/checkout@v3 | |
- name: Checkout LFS objects | |
run: git lfs checkout | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" # The Go version to download (if necessary) and use. | |
- name: E2E slash-throttle tests | |
run: go run ./tests/e2e/... --tc slash-throttle | |
multiconsumer-test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" | |
- uses: actions/checkout@v3 | |
- name: Checkout LFS objects | |
run: git lfs checkout | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" # The Go version to download (if necessary) and use. | |
- name: E2E multi-consumer tests | |
run: go run ./tests/e2e/... --tc multiconsumer |