mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-22 17:26:21 +03:00
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:
parent
23766cd01d
commit
fb6282da57
4 changed files with 252 additions and 257 deletions
5
.github/workflows/coverity-scan.yml
vendored
5
.github/workflows/coverity-scan.yml
vendored
|
@ -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
|
||||
|
|
2
.github/workflows/file_health.yaml
vendored
2
.github/workflows/file_health.yaml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue