From 60ef1c37dadb6170133ae5425be65d1e906c2624 Mon Sep 17 00:00:00 2001 From: Dipankar Das <65275144+dipankardas011@users.noreply.github.com> Date: Mon, 27 May 2024 18:02:09 +0530 Subject: [PATCH] added boilerplate for the e2e tests gh workflow file Signed-off-by: Dipankar Das <65275144+dipankardas011@users.noreply.github.com> --- .github/workflows/e2e-push.yaml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/e2e-push.yaml diff --git a/.github/workflows/e2e-push.yaml b/.github/workflows/e2e-push.yaml new file mode 100644 index 00000000..656afa2a --- /dev/null +++ b/.github/workflows/e2e-push.yaml @@ -0,0 +1,32 @@ +name: E2E on push event + +on: + push: + tags: + - v* + branches: + - main + - develop + workflow_dispatch: + +jobs: + e2e-current: + name: e2e current latest branch + runs-on: ubuntu-latest + + + strategy: + matrix: + python-ver: ["3.11", "3.12"] + + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-ver }} + + - name: test e2e simple + run: echo "TODO to find how to pass the current code" + + - name: test e2e with migration + run: echo "TODO need to find how to pass the input"