Last active
August 29, 2015 14:27
-
-
Save flenter/1a60ff187312d16279ec to your computer and use it in GitHub Desktop.
sample indentation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
box: nodejs | |
build: | |
steps: | |
# Correct way of indenting | |
- script: | |
name: works | |
code: | | |
echo "more indentation" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
box: nodejs | |
build: | |
steps: | |
# indentation below no longer allowed || | |
# indentation below no longer allowed VV | |
- script: | |
name: fails | |
code: | | |
echo "won't succeed" | |
# indentation below is correct || | |
# indentation below is correct VV | |
- script: | |
name: works | |
code: | | |
echo "more indentation" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment