feat: UNIC-1349 OptimizeDeltaTables Dag #217
This file contains 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: Scala CI | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
tests: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'adopt' | |
java-version: '11' | |
cache: 'sbt' | |
- name: Run datalake-commons tests | |
run: sbt 'project datalake-commons' 'test' | |
- name: Run datalake-spark3 tests | |
run: sbt 'project datalake-spark3' 'test' | |
- name: Run datalake-test-utils tests | |
run: sbt 'project datalake-test-utils' 'test' |