Omit parquet field for a schema with no nested fields #279
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: coursier/cache-action@v6 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Check Scala formatting | |
run: sbt scalafmtSbtCheck scalafmtCheckAll | |
- name: Run tests | |
run: env TESTCONTAINERS_RYUK_DISABLED=true sbt clean +test | |
- name: Check binary compatibility | |
run: sbt mimaReportBinaryIssues | |
- name: Check assets can be published | |
run: sbt +publishLocal |