From 723aa12e95d9601967dd30a8bbaa3694af689b17 Mon Sep 17 00:00:00 2001 From: Nordsche Sasa <117249454+nordschesasa@users.noreply.github.com> Date: Thu, 18 Apr 2024 21:22:58 +0800 Subject: [PATCH] Refine CI (#48) * Refine CI * reset * Fix path --- .github/workflows/ci.yml | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f2d0c2a..0e118e5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,13 +71,20 @@ jobs: with: name: itachi-${{ github.sha }} - - name: Run tests + - name: Run itachi in the background run: | - pwd && ls -lh && ls ./itachi && chmod +x ./itachi - # Run itachi in the background + chmod +x ./itachi ./itachi & - - name: Run tests + - name: Run transfer tests run: | - cd python - python3 transfer_100_eth.py \ No newline at end of file + python3 python/transfer_100_eth.py + + - name: Restart refresh itachi + run: | + killall itachi + rm -rf yu cairo_db && ./itachi & + + - name: Run deploy tests + run: | + cd python && python3 deploy_test.py \ No newline at end of file