Skip to content

Commit

Permalink
added boilerplate for the e2e tests gh workflow file
Browse files Browse the repository at this point in the history
Signed-off-by: Dipankar Das <[email protected]>
  • Loading branch information
dipankardas011 committed May 27, 2024
1 parent 26bbd3f commit 60ef1c3
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/e2e-push.yaml
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 60ef1c3

Please sign in to comment.