-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
catering for manual run of script as well as pipeline run
- Loading branch information
1 parent
9e003e7
commit 9c4d6db
Showing
2 changed files
with
10 additions
and
4 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 |
---|---|---|
|
@@ -17,9 +17,14 @@ jobs: | |
with: | ||
python-version: '3.9' | ||
|
||
- name: Install package with dependencies | ||
run: pip install -e . | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
- name: Install your package | ||
run: pip install -e . | ||
|
||
- name: Prepare Hedera Solo | ||
id: solo | ||
uses: OpenElements/[email protected] | ||
|
@@ -36,4 +41,5 @@ jobs: | |
OPERATOR_KEY: ${{ steps.solo.outputs.privateKey }} | ||
PUBLIC_KEY: ${{ steps.solo.outputs.publicKey }} | ||
NETWORK: 'solo' | ||
run: python test.py | ||
run: python test.py | ||
|
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