2023-10-21 11:50:27 -04:00
|
|
|
name: Docker Compose Linter
|
2023-10-21 11:51:34 -04:00
|
|
|
on: [push]
|
2023-10-21 11:50:27 -04:00
|
|
|
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 }}
|