Skip to content

Commit

Permalink
travis: run solium check
Browse files Browse the repository at this point in the history
  • Loading branch information
dtebbs committed Dec 17, 2019
1 parent 32a8ef4 commit 175800b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ addons:

matrix:
include:
- env: CI_TASK=contracts_check
os: linux
dist: bionic
language: node_js
node_js:
- "10.16.3"
- env: CI_TASK=pyclient_check CI_USE_DOCKER=1
os: linux
language: minimal
Expand Down
8 changes: 8 additions & 0 deletions scripts/ci
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@ function format_check() {
fi
}

function contracts_check() {
pushd zeth-contracts
npm config set python python2.7
npm install
npm run check
popd
}

function pyclient_check() {
pushd pyClient
python3.7 -m venv env
Expand Down

0 comments on commit 175800b

Please sign in to comment.