We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56b64f8 commit 74fb740Copy full SHA for 74fb740
.github/workflows/pipelines.yml
@@ -41,6 +41,19 @@ jobs:
41
run: |
42
nutter run "$DEV_DIRECTORY/unit-tests/" --cluster_id $CLUSTER_ID --recursive --junit_report --timeout 500
43
44
+ - name: Run a databricks notebook
45
+ uses: databricks/run-notebook@v0
46
+ with:
47
+ local-notebook-path: unit-tests/test_with_percent_run.py
48
+ databricks-host: $DATABRICKS_HOST
49
+ databricks-token: $DATABRICKS_TOKEN
50
+ git-commit: ${{ github.event.pull_request.head.sha }}
51
+ new-cluster-json: >
52
+ {
53
+ "num_workers": 1,
54
+ "spark_version": "10.4.x-scala2.12",
55
+ "node_type_id": "Standard_D3_v2"
56
+ }
57
OnRelease:
58
if: startsWith(github.ref_name, 'main')
59
environment: prod
0 commit comments