feat: add GitHub action to validate Compose file (#11)

feat: add GitHub action to validate Compose file
This commit is contained in:
Adrien Poupa 2023-05-08 12:09:14 -04:00 committed by GitHub
parent e33b45d695
commit 3495a9fc1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

13
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,13 @@
on: push
jobs:
validate-docker-compose:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Docker Compose
uses: ndeloof/install-compose-action@v0.0.1
- name: Setup Environment Variables
run: cp .env.example .env
- name: Validate Docker Compose
run: docker-compose config