We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4521db commit d1c1a53Copy full SHA for d1c1a53
.travis.yml
@@ -26,7 +26,7 @@ matrix:
26
include:
27
- os: linux
28
rvm: 2.0
29
- env: BUILD_TYPE="Debug" WITH_BFD="yes" WITH_MPC="yes"
+ env: BUILD_TYPE="Debug" WITH_BFD="yes" WITH_MPC="yes" RUBOCOP="yes"
30
31
rvm: 2.3.0
32
env: BUILD_TYPE="Debug" WITH_BFD="yes" WITH_MPC="yes"
@@ -66,6 +66,8 @@ script:
66
- export CFLAGS="-Werror"
67
# Install ruby gem
68
- gem install symengine-0.1.0.gem --install-dir $HOME --verbose -- -DSymEngine_DIR=$our_install_dir
69
+ # Check for code style using rubocop
70
+ - if [[ "${RUBOCOP}" == "yes" ]]; then rubocop; fi
71
72
# Test ruby gem
73
- gem install gem-path --no-ri --no-rdoc
0 commit comments