We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca3e1c7 commit 44bf1aeCopy full SHA for 44bf1ae
.travis.yml
@@ -0,0 +1 @@
1
+travis.yml
README.md
@@ -1,5 +1,7 @@
# adventofcode-rb-2016
2
3
+[](https://travis-ci.org/petertseng/adventofcode-rb-2016)
4
+
5
I'm reluctantly doing [Advent of Code](http://adventofcode.com) again.
6
7
I say "reluctantly" because I got dragged into it by a friend midway through last year, and felt the need to follow through.
travis.yml
@@ -0,0 +1,18 @@
+language: ruby
+rvm:
+ - '2.4'
+ - '2.3'
+matrix:
+ allow_failures:
+ - rvm: '2.3'
8
+script: |
9
+ bad=""
10
+ for f in *.rb; do
11
+ if ! ruby -c $f; then
12
+ bad="$bad $f"
13
+ fi
14
+ done
15
+ if [ -n "$bad" ]; then
16
+ echo "bad: $bad"
17
+ exit 1
18
0 commit comments