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 169274c commit 763746eCopy full SHA for 763746e
script/cibuild
@@ -1,2 +1,6 @@
1
#!/usr/bin/env bash
2
-./script/test
+
3
+set -e
4
5
+bundle exec rake test
6
+script/fmt
script/fmt
@@ -0,0 +1,10 @@
+#!/bin/bash
+echo "Rubocop $(bundle exec rubocop --version)"
+bundle exec rubocop -D -E $@
+success=$?
7
+if ((success != 0)); then
8
+ echo -e "\nTry running \`script/fmt -safe-auto-correct\` to automatically fix errors"
9
+fi
10
+exit $success
0 commit comments