Skip to content

Infra: Docker images and status badges #43

Infra: Docker images and status badges

Infra: Docker images and status badges #43

Workflow file for this run

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