Security improvements #6
Some checks are pending
CI/CD Pipeline with Secure Ephemeral PiP / test-backend (push) Waiting to run
CI/CD Pipeline with Secure Ephemeral PiP / test-frontend (push) Blocked by required conditions
CI/CD Pipeline with Secure Ephemeral PiP / build-backend (push) Blocked by required conditions
CI/CD Pipeline with Secure Ephemeral PiP / build-frontend (push) Blocked by required conditions
CI/CD Pipeline with Secure Ephemeral PiP / cleanup (push) Blocked by required conditions

This commit is contained in:
continuist 2025-09-04 23:47:42 -04:00
parent 9fafe288c7
commit 2b9df36966

View file

@ -69,14 +69,14 @@ jobs:
- name: Run backend integration tests
run: |
podman exec -e WORKSPACE="${GITHUB_WORKSPACE}" ci-pip-$RUN_ID sh -lc \
'podman run --rm \
--network integ-$RUN_ID \
-v "$WORKSPACE":/workspace \
-w /workspace \
-e DATABASE_URL=postgres://testuser:testpassword@test-postgres:5432/testdb \
rust@sha256:1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef \
sh -c "cargo test --test '*' -- --test-threads=1"'
podman exec -e WORKSPACE="${GITHUB_WORKSPACE}" -e RUN_ID="${RUN_ID}" ci-pip-$RUN_ID sh -lc '
podman run --rm \
--network integ-$RUN_ID \
-v "$WORKSPACE":/workspace \
-w /workspace \
-e DATABASE_URL=postgres://testuser:testpassword@test-postgres:5432/testdb \
rust@sha256:1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef \
sh -c "cargo test --test '"'"'*'"'"' -- --test-threads=1"'
- name: Cleanup test resources
if: always()