Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
Add docker-compose validation
Browse files Browse the repository at this point in the history
  • Loading branch information
ledermann committed Dec 11, 2023
1 parent d1d33f0 commit 4776811
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on:
push:

jobs:
docker:
timeout-minutes: 5
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Validate compose files
run: |
docker-compose -f guide/external-server/docker-compose.yml config -q
docker-compose -f guide/mqtt-evcc/docker-compose.yml config -q
docker-compose -f guide/mqtt-iobroker/docker-compose.yml config -q
docker-compose -f guide/raspberry-pi/docker-compose.yml config -q
docker-compose -f guide/synology/docker-compose.yml config -q

0 comments on commit 4776811

Please sign in to comment.