Add proper indention to steps section

Following the style from the examples in https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idsteps
This commit is contained in:
Chocobo1
2021-08-13 01:49:47 +08:00
parent 23766cd01d
commit fb6282da57
4 changed files with 252 additions and 257 deletions

View File

@@ -5,18 +5,16 @@ on: [pull_request, push]
jobs:
check_file_health:
name: Check file health
runs-on: ubuntu-20.04
steps:
- name: checkout repository
uses: actions/checkout@v2
- name: checkout repository
uses: actions/checkout@v2
- name: install zsh
run: |
sudo apt update
sudo apt install zsh
- name: install zsh
run: |
sudo apt update
sudo apt install zsh
- name: run check file health script
run: |
./.github/workflows/file_health.sh
- name: run check file health script
run: |
./.github/workflows/file_health.sh