-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix python dep extendStaking & setBlockCron yaml
- Loading branch information
cwsnt
committed
Jan 9, 2025
1 parent
9cc0871
commit c8a1bf6
Showing
2 changed files
with
10 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 |
---|---|---|
|
@@ -42,6 +42,11 @@ jobs: | |
~/.vvm | ||
key: ${{ runner.os }}-compiler-cache | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.9" | ||
|
||
- name: Install python dependencies | ||
run: pip install -r requirements.txt && brownie pm install OpenZeppelin/[email protected] | ||
|
||
|
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 |
---|---|---|
|
@@ -60,6 +60,11 @@ jobs: | |
# ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | ||
# ${{ runner.os }}-pip- | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.9" | ||
|
||
- name: Install python dependencies | ||
run: pip install -r requirements.txt && brownie pm install OpenZeppelin/[email protected] | ||
|
||
|