Merge pull request #624 from mohd-akram/blank-indentation

blank.yml: fix indentation
This commit is contained in:
Andy McKay
2020-08-26 15:05:31 -07:00
committed by GitHub
+10 -10
View File
@@ -19,15 +19,15 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job # Steps represent a sequence of tasks that will be executed as part of the job
steps: steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2 - uses: actions/checkout@v2
# Runs a single command using the runners shell # Runs a single command using the runners shell
- name: Run a one-line script - name: Run a one-line script
run: echo Hello, world! run: echo Hello, world!
# Runs a set of commands using the runners shell # Runs a set of commands using the runners shell
- name: Run a multi-line script - name: Run a multi-line script
run: | run: |
echo Add other actions to build, echo Add other actions to build,
echo test, and deploy your project. echo test, and deploy your project.