Skip to content

Commit

Permalink
try pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
allisonport-db committed May 23, 2023
1 parent c94adab commit 7db0709
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@ jobs:
SCALA_VERSION: ${{ matrix.scala }}
steps:
- uses: actions/checkout@v3
- uses: technote-space/get-diff-action@v4
id: git-diff
with:
PATTERNS: |
**
!kernel/**
- name: print the results
run: |
echo $GIT_DIFF
- name: install java
uses: actions/setup-java@v3
with:
Expand Down Expand Up @@ -53,3 +62,4 @@ jobs:
run: |
pipenv run python run-tests.py --coverage
cd examples/scala && build/sbt "++ $SCALA_VERSION compile"
if: steps.get-diff.outputs.diff
2 changes: 2 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ val scala213 = "2.13.5"
val default_scala_version = scala212
val all_scala_versions = Seq(scala212, scala213)

// comment

scalaVersion := default_scala_version

// crossScalaVersions must be set to Nil on the root project
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ import org.apache.spark.sql.delta.util.FileNames
// Base Test Suite //
/////////////////////

// test

class ExternalLogStoreSuite extends org.apache.spark.sql.delta.PublicLogStoreSuite {
override protected val publicLogStoreClassName: String =
classOf[MemoryLogStore].getName
Expand Down

0 comments on commit 7db0709

Please sign in to comment.