DockerCompose/.forgejo/workflows/lint.yaml
SeaswimmerTheFsh dd08f539f6
All checks were successful
Docker Compose Linter / Docker Compose Linter (push) Successful in 4s
remove uploading the artifact, no point when its text regardless
2023-10-21 14:02:59 -04:00

24 lines
627 B
YAML

name: Docker Compose Linter
on: [push] # yamllint disable-line rule:truthy
jobs:
Docker Compose Linter:
runs-on: docker
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Linter
run: pip install yamllint
- name: Lint YAML
id: yaml-lint
uses: actions/yamllint@v3
with:
strict: true
config_data: |
extends: default
rules:
document-start: disable
line-length: disable
comments-indentation: disable