We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a034652 commit 119fc47Copy full SHA for 119fc47
1 file changed
.github/workflows/on_pr.yml
@@ -41,6 +41,7 @@ jobs:
41
42
packaging_test:
43
name: Build a minimal set of packages and run all tests on them
44
+ needs: ensure_submodule_sanity
45
# Skip packaging tests for draft PRs
46
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
47
uses: ./.github/workflows/packaging.yml
@@ -51,7 +52,9 @@ jobs:
51
52
53
coverage_test:
54
name: Run coverage tests
- if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
55
56
+ # Only run coverage test for draft PRs
57
+ if: ${{ github.event_name == 'pull_request' && github.event.pull_request.draft == true }}
58
uses: ./.github/workflows/coverage.yml
59
with:
60
duckdb_git_ref: ${{ github.base_ref }}
0 commit comments