chore: release engine 1.55.0 / sdk 0.1.6 #673
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: dagster-ci | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'integrations/dagster/**' | |
| - 'sdk/python/**' | |
| - 'schemas/**' | |
| - '.github/workflows/dagster-ci.yml' | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'integrations/dagster/**' | |
| - 'sdk/python/**' | |
| - 'schemas/**' | |
| - '.github/workflows/dagster-ci.yml' | |
| # CI only reads the repo; restrict the token to the minimum (CodeQL ql-for-actions). | |
| permissions: | |
| contents: read | |
| # Cancel superseded in-progress runs on the same PR — a new push supersedes the | |
| # previous run instead of letting both finish. Scoped to pull_request so a | |
| # fast-follow merge to main never cancels a main-branch validation run. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| defaults: | |
| run: | |
| working-directory: integrations/dagster | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0 | |
| - run: uv sync --dev | |
| - run: uv run python -m pytest -v | |
| - run: uv run python -m ruff check src/ tests/ | |
| - run: uv run python -m ruff format --check src/ tests/ |