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
No known key found for this signature in database
GPG key ID: 210D9C873253A68C
4 changed files with 252 additions and 257 deletions

View file

@ -1,20 +1,17 @@
name: Coverity Scan
on:
schedule:
- cron: '0 0 1 * *' # Monthly (1st day of month at midnight)
workflow_dispatch: # Mainly for testing. Don't forget the Coverity usage limits.
env:
LIBTORRENT_VERSION_TAG: v1.2.14
jobs:
coverity_scan:
name: Scan
runs-on: ubuntu-20.04
steps:
- name: checkout repository
uses: actions/checkout@v2

View file

@ -5,9 +5,7 @@ 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