feat: CLIN-5494 Safe parse OMIM phenotypes attributes #308
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: 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' | |
| - uses: sbt/setup-sbt@v1 | |
| - 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' |