Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/hello.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Homelab CI

on:
pull_request:
branches:
- main

push:
branches:
- main
Expand All @@ -18,3 +22,11 @@ jobs:

- name: Validate Monitoring Docker Compose
run: docker compose -f monitoring/docker-compose.yml config

- name: Verify Expected Services Exist
run: |
services=$(docker compose config --services)

echo "$services" | grep nginx
echo "$services" | grep postgres
echo "$services" | grep redis
Loading