chore(deps): update postgres:16.4 docker digest to e62fbf9 #50
Workflow file for this run
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: 🧪 Test | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "**/compose.yml" | |
- .github/workflows/test.yml | |
pull_request: | |
paths: | |
- "**/compose.yml" | |
- .github/workflows/test.yml | |
jobs: | |
Test: | |
runs-on: Ubuntu-Latest | |
steps: | |
- name: 🚚 Checkout Repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: ♻️ Copy the .env | |
run: | | |
while read -r tmpl; do | |
sed -e 's/=$/=./g' "$tmpl" >"$(dirname "$tmpl")/.env" | |
done < <(find . -name '.env.tmpl') | |
- name: 🐳 Start the Containers | |
run: | | |
while read -r compose; do | |
docker compose -f "$compose" up -d --quiet-pull | |
done < <(find . -name 'compose.yml') |