simplified docker compose linter
Some checks failed
Docker Compose Linter / Docker Compose Linter (push) Failing after 0s
Some checks failed
Docker Compose Linter / Docker Compose Linter (push) Failing after 0s
This commit is contained in:
parent
955583579c
commit
d9ca874aa9
1 changed files with 8 additions and 6 deletions
|
@ -4,14 +4,16 @@ jobs:
|
|||
Docker Compose Linter:
|
||||
runs-on: docker
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Lint YAML
|
||||
uses: actions/yamllint
|
||||
uses: actions/yamllint@v3
|
||||
|
||||
- run: echo ${{ steps.yaml-lint.outputs.logfile }}
|
||||
|
||||
- uses: actions/upload-artifact@v2
|
||||
- name: Upload Logs
|
||||
run: echo ${{ steps.yaml-lint.outputs.logfile }}
|
||||
uses: actions/upload-artifact@v2
|
||||
if: always()
|
||||
with:
|
||||
name: yamllint-logfile
|
||||
name: linter-logfile
|
||||
path: ${{ steps.yaml-lint.outputs.logfile }}
|
||||
|
|
Loading…
Reference in a new issue