Skip to content

add e2e tests workflow #1

add e2e tests workflow

add e2e tests workflow #1

Workflow file for this run

name: SEQ e2e tests
on:
push:
branches:
- '*'
pull_request:
types: [labeled,synchronize,reopened]
jobs:
seq-e2e-tests:
runs-on: ubuntu-20.04
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
check-latest: true
cache: true
cache-dependency-path: |
go.sum
- name: Run e2e tests
run: |
chmod +x ./scripts/run.sh
MODE="test" ./scripts/run.sh
shell: bash