Skip _metadata struct fields on data skipping
#2201
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: "Delta Unity" | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| name: "Delta Unity Tests" | |
| runs-on: ubuntu-24.04 | |
| env: | |
| SCALA_VERSION: 2.12.18 | |
| 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 unity/test coverageAggregate coverageOff -v | |
| if: steps.git-diff.outputs.diff |