-
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.
Signed-off-by: Dipankar Das <[email protected]>
- Loading branch information
1 parent
60ef1c3
commit 5b8fae1
Showing
4 changed files
with
74 additions
and
41 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,36 @@ | ||
name: E2E on push event | ||
|
||
on: | ||
push: | ||
tags: | ||
- v* | ||
branches: | ||
- main | ||
- develop | ||
- feat-add-e2e-test # TODO(user): remove it | ||
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: install frappe from v0.9.0 | ||
run: | | ||
cd /tmp | ||
python -m pip install -U git+https://github.com/rtCamp/[email protected] | ||
- name: frappe version | ||
run: fm --version | ||
|
This file was deleted.
Oops, something went wrong.
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,37 @@ | ||
name: E2E on push event | ||
|
||
on: | ||
push: | ||
tags: | ||
- v* | ||
branches: | ||
- main | ||
- develop | ||
- feat-add-e2e-test # TODO(user): remove it | ||
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: install frappe from current commit | ||
run: | | ||
cd .. | ||
python -m pip install --upgrade ./Frappe-Manager | ||
- name: frappe version | ||
run: fm --version | ||
|
||
|
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