Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Publish develop

on:
pull_request:
branches: [ main, staging ]
branches: [ develop, main, staging ]
push:
branches:
- staging
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/quality-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,14 @@ jobs:
run: uv run pytest -m api --no-cov

- name: Dagster startup smoke test
run: uv run pytest -m integration -k test_dagster_startup --no-cov
env:
# Match dagster.yaml (env-based storage/logs); runner has no Docker .env defaults.
DAGSTER_HOME: ${{ github.workspace }}
DAGSTER_STORAGE_DIR: ${{ github.workspace }}/tmp_dagster/storage
DAGSTER_LOGS_DIR: ${{ github.workspace }}/tmp_dagster/logs
run: |
mkdir -p "$DAGSTER_STORAGE_DIR" "$DAGSTER_LOGS_DIR"
uv run pytest -m integration -k test_dagster_startup --no-cov

dbt-check:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ PR.md
PR.txt
TODO.md

# CI ephemeral Dagster dirs (quality-checks sets DAGSTER_* under repo root)
tmp_dagster/

# Local
.actrc
.mcp.json
Loading