SeaswimmerTheFsh
955583579c
Some checks failed
Docker Compose Linter / Docker Compose Linter (push) Failing after 18s
17 lines
416 B
YAML
17 lines
416 B
YAML
name: Docker Compose Linter
|
|
on: [push]
|
|
jobs:
|
|
Docker Compose Linter:
|
|
runs-on: docker
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Lint YAML
|
|
uses: actions/yamllint
|
|
|
|
- run: echo ${{ steps.yaml-lint.outputs.logfile }}
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
if: always()
|
|
with:
|
|
name: yamllint-logfile
|
|
path: ${{ steps.yaml-lint.outputs.logfile }}
|