I just created a Haskell Travis CI project with this .travis.yml:
.travis.yml
language: haskell ghc: - 7.8 - 7.10
But Travis interprets th
It's not a bug, it's a consequence of using YAML files for config: YAML parses 7.10 as the number 7.1.
7.10
7.1
The node.js docs on Travis do have all the version numbers in quotes:
language: node_js node_js: - "0.12" - "0.11" - "0.10" - "0.8" - "0.6" - "iojs" - "iojs-v1.0.4"