generated from Badger-Finance/badger-strategy-mix-v1
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Stephen Hankinson
committed
Sep 9, 2021
0 parents
commit 191ca57
Showing
275 changed files
with
34,473 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,3 @@ | ||
ETHERSCAN_TOKEN=<your-token-here> | ||
WEB3_INFURA_PROJECT_ID=<your-token-here> | ||
|
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 @@ | ||
*.vy linguist-language=Python |
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,93 @@ | ||
name: Lint | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
pull_request: | ||
|
||
jobs: | ||
solidity: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out github repository | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: Setup node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: "12.x" | ||
|
||
- name: Set yarn cache directory path | ||
id: yarn-cache-dir-path | ||
run: echo "::set-output name=dir::$(yarn cache dir)" | ||
|
||
- name: Restore yarn cache | ||
uses: actions/cache@v2 | ||
id: yarn-cache | ||
with: | ||
path: | | ||
${{ steps.yarn-cache-dir-path.outputs.dir }} | ||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | ||
${{ runner.os }}-yarn- | ||
- name: Install node.js dependencies | ||
run: yarn --frozen-lockfile | ||
|
||
- name: Run linter on *.sol and *.json | ||
run: yarn lint:check | ||
|
||
commits: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out github repository | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Run commitlint | ||
uses: wagoid/commitlint-github-action@v2 | ||
|
||
brownie: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out github repository | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: Set up python 3.8 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.8 | ||
|
||
- name: Set pip cache directory path | ||
id: pip-cache-dir-path | ||
run: | | ||
echo "::set-output name=dir::$(pip cache dir)" | ||
- name: Restore pip cache | ||
uses: actions/cache@v2 | ||
id: pip-cache | ||
with: | ||
path: | | ||
${{ steps.pip-cache-dir-path.outputs.dir }} | ||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements-dev.txt') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip-${{ hashFiles('**/requirements-dev.txt') }} | ||
${{ runner.os }}-pip- | ||
- name: Install python dependencies | ||
run: pip install -r requirements-dev.txt | ||
|
||
- name: Run black | ||
run: black --check --include "(tests|scripts)" . | ||
# TODO: Add Slither Static Analyzer |
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,64 @@ | ||
name: Test | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
pull_request: | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
|
||
- name: Cache compiler installations | ||
uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/.solcx | ||
~/.vvm | ||
key: ${{ runner.os }}-compiler-cache | ||
|
||
- name: Setup node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: "12.x" | ||
|
||
- name: Install ganache | ||
run: npm install -g ganache-cli@6.12.1 | ||
|
||
- name: Set up python 3.8 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.8 | ||
|
||
- name: Set pip cache directory path | ||
id: pip-cache-dir-path | ||
run: | | ||
echo "::set-output name=dir::$(pip cache dir)" | ||
- name: Restore pip cache | ||
uses: actions/cache@v2 | ||
id: pip-cache | ||
with: | ||
path: | | ||
${{ steps.pip-cache-dir-path.outputs.dir }} | ||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements-dev.txt') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip-${{ hashFiles('**/requirements-dev.txt') }} | ||
${{ runner.os }}-pip- | ||
- name: Install python dependencies | ||
run: pip install -r requirements-dev.txt | ||
|
||
- name: Compile Code | ||
run: brownie compile --size | ||
|
||
- name: Run Tests | ||
env: | ||
ETHERSCAN_TOKEN: MW5CQA6QK5YMJXP2WP3RA36HM5A7RA1IHA | ||
WEB3_INFURA_PROJECT_ID: b7821200399e4be2b4e5dbdf06fbe85b | ||
run: brownie test |
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,10 @@ | ||
# Brownie | ||
__pycache__ | ||
.history | ||
.hypothesis/ | ||
build/ | ||
reports/ | ||
.env | ||
|
||
# Node/npm | ||
node_modules/ |
Oops, something went wrong.