simplified docker compose linter
Some checks failed
Docker Compose Linter / Docker Compose Linter (push) Failing after 0s

This commit is contained in:
Seaswimmer 2023-10-21 11:54:30 -04:00
parent 955583579c
commit d9ca874aa9
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -4,14 +4,16 @@ jobs:
Docker Compose Linter: Docker Compose Linter:
runs-on: docker runs-on: docker
steps: steps:
- uses: actions/checkout@v3 - name: Checkout Repository
uses: actions/checkout@v3
- name: Lint YAML - name: Lint YAML
uses: actions/yamllint uses: actions/yamllint@v3
- run: echo ${{ steps.yaml-lint.outputs.logfile }} - name: Upload Logs
run: echo ${{ steps.yaml-lint.outputs.logfile }}
- uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
if: always() if: always()
with: with:
name: yamllint-logfile name: linter-logfile
path: ${{ steps.yaml-lint.outputs.logfile }} path: ${{ steps.yaml-lint.outputs.logfile }}