Skip to content

Commit

Permalink
Fix Ganache in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Uxio0 committed Jul 15, 2024
1 parent f7718d6 commit c91dca3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Python CI
on:
push:
branches:
- master
- main
- develop
pull_request:
release:
Expand Down Expand Up @@ -65,7 +65,8 @@ jobs:
steps:
- name: Setup and run ganache
run: |
docker run --detach --publish 8545:8545 --network-alias ganache -e DOCKER=true trufflesuite/ganache:latest --defaultBalanceEther 10000 --gasLimit 10000000 -a 30 --chain.chainId 1337 --chain.networkId 1337 -d
docker network create ganache
docker run --detach --publish 8545:8545 --network ganache -e DOCKER=true trufflesuite/ganache:latest --defaultBalanceEther 10000 --gasLimit 10000000 -a 30 --chain.chainId 1337 --chain.networkId 1337 -d
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand Down

0 comments on commit c91dca3

Please sign in to comment.