debug4 #14
Workflow file for this run
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
name: Tests | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Pre | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y jq | |
- name: Foundry Anvil | |
run: | | |
curl -L https://foundry.paradigm.xyz | bash | |
source ~/.bashrc | |
./foundryup | |
nohup ./anvil --auto-impersonate & | |
more nohup.out | |
- name: Set up Python 3 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.11" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install . | |
- name: Run tests | |
env: | |
WEB3_FROM: ${{ secrets.TEST_PRIV }} | |
run: | | |
docker ps -a | |
docker ps -aq | |
docker logs $(docker ps -aq | head -1) | |
tests/test.sh |