Skip to content

Commit

Permalink
ci: check docker compose syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
ZdenekM committed May 26, 2021
1 parent f6c426f commit ab52f7e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Validate Docker compose files

on:
pull_request:
branches:
- master

jobs:
compose:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Check syntax of fit-demo
run: |
docker-compose -f docker/fit-demo/docker-compose.yml config
- name: Check syntax of kinali-demo
run: |
docker-compose -f docker/kinali-demo/docker-compose.yml config

0 comments on commit ab52f7e

Please sign in to comment.