gitlab-ci.yml doesn't allow boolean values

Not sure if this is intended or a bug.

variables:
  FOOBAR: false

causes an error. However, as a string it works:

variables:
  FOOBAR: 'false'

It's also annoying that the CI Linter doesn't show which line the offending error is on.

Thanks.