Update ghcr.io/yanorei32/discord-tts:latest Docker digest to 7c5d44c #103
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: validate compose | |
on: | |
pull_request: | |
paths: | |
- 'docker-compose.yml' | |
- '.github/workflows/validate-compose.yml' | |
jobs: | |
validate-compose: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: actions/[email protected] | |
- name: validate | |
shell: bash | |
run: | | |
shopt -s globstar | |
set -eux | |
for f in **/docker-compose.yml; do | |
if ! docker compose --file "$f" config --quiet; then | |
exit 1 | |
fi | |
done | |
exit 0 |