Popping stash
Some checks failed
🧪✨ Tests Workflow / 🧪 ✅ Unit Tests (push) Successful in 2m10s
🧪✨ Tests Workflow / 🛡️ 🔒 Library Audit (push) Successful in 2m15s
🧪✨ Tests Workflow / 📝 ✨ Code Lint (push) Successful in 2m14s
🧪✨ Tests Workflow / 🧪 ✨ Database Migrations (push) Failing after 2m28s
🧪✨ Tests Workflow / 🛡️ 🔒 License Check (push) Successful in 2m32s
🧪✨ Tests Workflow / 🐙 🔍 Code Sniffer (push) Successful in 2m33s

This commit is contained in:
2025-05-14 09:31:33 -04:00
parent e46bf5a6ec
commit f57406f981

View File

@@ -31,16 +31,15 @@ jobs:
- name: Start Pogstres
run: |
docker run --rm \
--name ${{ env.JOB_CONTAINER_NAME }} \
--name ${{ env.JOB_CONTAINER_NAME }}-postgres \
-e POSTGRES_USER=postgres \
-e POSTGRES_PASSWORD=postgres \
-e POSTGRES_DB=postgres \
-p 5432:5432 \
-d postgres:latest
-d postgres:17
- name: Run Migrations
run: |
docker run --rm -v $(PWD):/app siteworxpro/migrate:v4.18.3 -database "postgres://postgres:postgres@localhost:5432/postgres?sslmode=disable" -path /app/db/migrations up
docker run --rm -v $(PWD):/app siteworxpro/migrate:v4.18.3 -database "postgres://postgres:postgres@${{ env.JOB_CONTAINER_NAME }}-postgres:5432/postgres?sslmode=disable" -path /app/db/migrations up
LibraryAudit:
name: 🛡️ 🔒 Library Audit