[Kernel-Spark] Wire up catalog-managed snapshot management for CCv2 #601
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Kernel Unity Catalog" | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| name: "Kernel Unity Catalog Tests" | |
| runs-on: ubuntu-24.04 | |
| env: | |
| SCALA_VERSION: 2.13.16 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: technote-space/get-diff-action@v4 | |
| id: git-diff | |
| with: | |
| PATTERNS: | | |
| build.sbt | |
| version.sbt | |
| unity/** | |
| kernel/** | |
| storage/** | |
| .github/workflows/unity_test.yaml | |
| - name: install java | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: "zulu" | |
| java-version: "11" | |
| if: steps.git-diff.outputs.diff | |
| - name: Run Unity tests with coverage | |
| run: | | |
| ./build/sbt "++ ${{ env.SCALA_VERSION }}" clean coverage kernelUnityCatalog/test coverageAggregate coverageOff -v | |
| if: steps.git-diff.outputs.diff |