How is the target directory over 100 gigs?
Some checks failed
🧪✨ Tests Workflow / 🧪 ✨ Database Migrations (push) Failing after 1m6s
🧪✨ Tests Workflow / 🛡️ 🔒 Library Audit (push) Successful in 1m5s
🧪✨ Tests Workflow / 📝 ✨ Code Lint (push) Successful in 1m11s
🧪✨ Tests Workflow / 🐙 🔍 Code Sniffer (push) Successful in 1m15s
🧪✨ Tests Workflow / 🛡️ 🔒 License Check (push) Failing after 2m31s
🧪✨ Tests Workflow / 🧪 ✅ Unit Tests (push) Successful in 57s

This commit is contained in:
2025-05-14 11:22:45 -04:00
parent be570a3173
commit 9f048e408c

View File

@@ -48,7 +48,7 @@ jobs:
--volumes-from ${{ env.JOB_CONTAINER_NAME }} \
--network "${{ env.JOB_CONTAINER_NAME }}-DatabaseMigrations-network" \
-w ${{ github.workspace }} \
siteworxpro/migrate:v4.18.3 -database "postgres://postgres:postgres@${{ env.JOB_CONTAINER_NAME }}-postgres:5432/postgres?sslmode=disable" -path db/migrations up
siteworxpro/migrate:v4.18.3 -database "postgres://postgres:postgres@localhost:5432/postgres?sslmode=disable" -path db/migrations up
- name: Rollback Migrations
run: |
@@ -58,7 +58,7 @@ jobs:
--volumes-from ${{ env.JOB_CONTAINER_NAME }} \
--network "${{ env.JOB_CONTAINER_NAME }}-DatabaseMigrations-network" \
-w ${{ github.workspace }} \
siteworxpro/migrate:v4.18.3 -database "postgres://postgres:postgres@${{ env.JOB_CONTAINER_NAME }}-postgres:5432/postgres?sslmode=disable" -path db/migrations down --all
siteworxpro/migrate:v4.18.3 -database "postgres://postgres:postgres@localhost:5432/postgres?sslmode=disable" -path db/migrations down --all
- name: Tear Down Support Containers
if: always()