DockerCompose/.forgejo/workflows/lint.yaml
SeaswimmerTheFsh d9ca874aa9
Some checks failed
Docker Compose Linter / Docker Compose Linter (push) Failing after 0s
simplified docker compose linter
2023-10-21 11:54:30 -04:00

19 lines
477 B
YAML

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