We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fce8f3 commit a965f4eCopy full SHA for a965f4e
1 file changed
.github/workflows/on_pr.yml
@@ -19,6 +19,7 @@ concurrency:
19
cancel-in-progress: true
20
21
jobs:
22
+
23
packaging_test:
24
name: Build a minimal set of packages and run all tests on them
25
# Skip packaging tests for draft PRs
@@ -27,13 +28,14 @@ jobs:
27
28
with:
29
minimal: true
30
testsuite: all
- git_ref: ${{ github.ref }}
31
- duckdb_git_ref: ${{ github.ref_name }}
+ git_ref: ${{ github.head_ref }}
32
+ duckdb_git_ref: ${{ github.base_ref }}
33
34
coverage_test:
35
name: Run coverage tests
36
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
37
uses: ./.github/workflows/coverage.yml
38
39
40
41
0 commit comments