-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added boilerplate for the e2e tests gh workflow file
Signed-off-by: Dipankar Das <[email protected]>
- Loading branch information
1 parent
26bbd3f
commit 60ef1c3
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
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
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" |