Skip to content

Commit

Permalink
build: separate test cicd in sections
Browse files Browse the repository at this point in the history
  • Loading branch information
JuArce committed Jan 24, 2024
1 parent 3fd4eb9 commit 67bc185
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
steps:
- uses: actions/checkout@v4

# Python setup
- name: Setup Python
uses: actions/setup-python@v5
with:
Expand All @@ -47,6 +48,7 @@ jobs:
python -m pip install --upgrade pip
pip install -r mm-bot/requirements.txt
# Postgres setup
- name: Install PSQL
run: |
sudo apt-get update
Expand All @@ -59,6 +61,15 @@ jobs:
env:
PGPASSWORD: postgres_password

# Ethereum Setup
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1

- name: Run Anvil
run: |
anvil &
# Starknet Setup
- name: Install scarb
uses: software-mansion/setup-scarb@v1
with:
Expand Down Expand Up @@ -90,10 +101,10 @@ jobs:
run: |
.github/workflows/scripts/setup_katana_account.sh
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
# Deploy Ethereum Contract


# Deploy Starknet Contract

- name: Run Anvil
run: |
anvil &

# Run mm-bot (it should run a single process order listening to the contract once)

0 comments on commit 67bc185

Please sign in to comment.