Initial draft of the CI/CD with Circle CI

pull/120/head
Dr. Sergey Pogodin 7 years ago
parent c4cdbddc4e
commit 6719e7c0f2
  1. 18
      .cirlceci/config.yml
  2. 2
      requirements.txt
  3. 2
      setup.py

@ -0,0 +1,18 @@
version: 2
jobs:
# Basic testing of a new commit to any branch.
test:
docker:
- image: birdofpreyru/mythril:0.0.1
steps:
- checkout
- run:
name: Unit-testing
command: python3 ./all_tests.sh
workflows:
version: 2
build:
jobs:
- test

@ -1,7 +1,7 @@
ethereum>=2.3.0
ZODB>=5.3.0
z3-solver>=4.5
laser-ethereum==0.5.20
laser-ethereum>=0.5.20
requests
BTrees
py-solc

@ -290,7 +290,7 @@ setup(
'ethereum>=2.3.0',
'ZODB>=5.3.0',
'z3-solver>=4.5',
'laser-ethereum==0.5.20',
'laser-ethereum>=0.5.20',
'requests',
'BTrees',
'py-solc',

Loading…
Cancel
Save