We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7df7634 commit 3b2712aCopy full SHA for 3b2712a
.github/workflows/ci.yml
@@ -68,18 +68,17 @@ jobs:
68
cache: sbt
69
- name: Check formatting
70
shell: bash
71
- run: |
+ run: |-
72
echo "If either of these checks fail run: 'sbt scalafmtAll && sbt scalafmtSbt'"
73
sbt scalafmtSbtCheck
74
sbt scalafmtCheckAll
75
- name: Run tests
76
- if: startsWith(matrix.scala, '2.')
77
78
run: |
79
sbt test
80
- name: Run tests with Spark Shuffle Fetch enabled
81
82
- if: !startsWith(matrix.spark, '3.2.')
+ if: ${{ !startsWith(matrix.spark, '3.2.') }}
83
env:
84
USE_SPARK_SHUFFLE_FETCH: "true"
85
0 commit comments