#120 Init comprehensive compose config contraption
Some checks are pending
Docker Compose Config / docker-compose-config (push) Waiting to run
First Gitea Action / my-shell-script (push) Successful in 9s

This commit is contained in:
Joey Hafner 2024-02-12 22:23:15 -08:00
parent 6f41bb3a76
commit d9537880bf

View File

@ -0,0 +1,17 @@
name: Docker Compose Config
run-name: ${{ gitea.actor }} is linting docker-compose files
on: [push]
jobs:
docker-compose-config:
runs-on: docker:25-dind
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Get location of all docker-compose.yaml files
run: |
for compose in $(find "$PWD"/ -name docker-compose.yml); do
cd $(dirname $compose)
docker compose config
done
- run: echo "Job status ${{ job.status }}"