fail cast with more information, incl schema in table meta #368
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: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: olafurpg/setup-scala@v13 | |
with: | |
java-version: [email protected] | |
- name: Cache SBT | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/coursier/v1 | |
~/.sbt | |
key: sbt-${{ hashFiles('**/build.sbt') }} | |
- name: Run tests | |
run: sbt clean test |