-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #328 from moonstream-to/statblock
Implementation of `StatBlock`
- Loading branch information
Showing
14 changed files
with
3,614 additions
and
3 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,42 @@ | ||
name: StatBlock tests | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- "contracts/stats/**" | ||
- "cli/web3cli/test_statblock.py" | ||
- "cli/web3cli/StatBlock.py" | ||
- "cli/web3cli/IStatBlock.py" | ||
- "cli/web3cli/statblock_events.py" | ||
- ".github/workflows/statblock.yml" | ||
branches: | ||
- main | ||
jobs: | ||
build: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: "16" | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.9" | ||
- name: Install ganache | ||
run: npm install -g ganache-cli | ||
- name: Upgrade pip | ||
env: | ||
BROWNIE_LIB: 1 | ||
run: pip install -U pip | ||
- name: Install additional dev dependencies | ||
run: | | ||
pip install black moonworm | ||
- name: Install dependencies for CLI | ||
working-directory: cli/ | ||
env: | ||
BROWNIE_LIB: 1 | ||
run: | | ||
pip install -e . | ||
- name: Run tests | ||
working-directory: cli/ | ||
run: bash test.sh web3cli.test_statblock |
Oops, something went wrong.