Skip to content

docs(changelog): record the dependency refresh in the four pending re… #1009

docs(changelog): record the dependency refresh in the four pending re…

docs(changelog): record the dependency refresh in the four pending re… #1009

Workflow file for this run

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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.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/