Skip to content

Commit 3b2712a

Browse files
committed
Fix Github CI build script
Signed-off-by: Pascal Spörri <[email protected]>
1 parent 7df7634 commit 3b2712a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,18 +68,17 @@ jobs:
6868
cache: sbt
6969
- name: Check formatting
7070
shell: bash
71-
run: |
71+
run: |-
7272
echo "If either of these checks fail run: 'sbt scalafmtAll && sbt scalafmtSbt'"
7373
sbt scalafmtSbtCheck
7474
sbt scalafmtCheckAll
7575
- name: Run tests
76-
if: startsWith(matrix.scala, '2.')
7776
shell: bash
7877
run: |
7978
sbt test
8079
- name: Run tests with Spark Shuffle Fetch enabled
8180
shell: bash
82-
if: !startsWith(matrix.spark, '3.2.')
81+
if: ${{ !startsWith(matrix.spark, '3.2.') }}
8382
env:
8483
USE_SPARK_SHUFFLE_FETCH: "true"
8584
run: |

0 commit comments

Comments
 (0)