Skip to content

rework docker compose script to allow future extensibility #260

rework docker compose script to allow future extensibility

rework docker compose script to allow future extensibility #260

Workflow file for this run

name: 'ShellCheck'
on:
push:
paths:
- 'compose/bin/**'
branches:
- "master"
pull_request:
paths:
- 'compose/bin/**'
jobs:
shellcheck:
name: shellcheck
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
id: check
env:
SHELLCHECK_OPTS: -x -e SC2181 -P compose/bin -P compose/env
with:
check_together: true
scandir: './compose/bin'