Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/actions/brownie_fork_tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ runs:

- name: Show system info
shell: bash
env:
VOTE_TYPE: ${{ inputs.vote }}
run: |
echo "Memory and swap:"
free -h
Expand All @@ -67,12 +69,13 @@ runs:
echo "CPU units"
nproc --all
echo "Vote type"
echo ${{ inputs.vote }}
echo "$VOTE_TYPE"

- name: Run tests
shell: bash
run: >
${{ inputs.command }}
env:
ETHERSCAN_TOKEN: ${{ inputs.etherscan }}
ETH_RPC_URL: ${{ inputs.rpc_url }}
COMMAND: ${{ inputs.command }}
run: |
bash -lc "$COMMAND"