Infra: Docker images and status badges #43
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: Run E2E Tests | |
on: | |
push: | |
# paths-ignore: | |
# - .github/ | |
# - README.md | |
branches: [main] | |
pull_request: | |
jobs: | |
go-test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.22.3" | |
- name: copy E2E config | |
run: make copy_test_config | |
- name: update E2E config from secrets | |
env: | |
GATEWAY_PRIVATE_KEY: ${{ secrets.GATEWAY_PRIVATE_KEY }} | |
run: ./e2e/scripts/update_config_from_secrets.sh | |
- name: Run E2E Tests | |
run: make test_e2e_shannon_relay |