fixed missing postgreseql
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m21s

This commit is contained in:
Richard Mrasek
2026-06-12 09:15:10 +02:00
parent a9946102ed
commit 52d2bb1812
3 changed files with 64 additions and 0 deletions

View File

@@ -69,6 +69,13 @@ jobs:
-t "${IMAGE_REPO}:${SHORT_SHA}" \
.
- name: Validate Dagster runtime imports
run: |
COMMIT_SHA="${GITHUB_SHA:-$GITEA_SHA}"
SHORT_SHA="$(echo "${COMMIT_SHA}" | cut -c1-12)"
docker run --rm "${IMAGE_REPO}:${SHORT_SHA}" \
python -c "import dagster_postgres; print('dagster_postgres import OK')"
- name: Push image tags
run: |
COMMIT_SHA="${GITHUB_SHA:-$GITEA_SHA}"