Multiple-line strings (SO)
If a normal string is split across multiple lines then the newlines will be by default removed:
script:
- Long string
on multiple lines
To keep the newlines add '|'
script:
- |
Long string
on multiple lines