Revisit handling IS_NULL conditions on right source table columns in LEFT_OUTER virtual tables #811
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: CI for Data Loader CLI | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| data_loader_ci: | |
| name: Build Data Loader CLI | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up JDK 8 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 8 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v5 | |
| - name: Gradle Data Loader CLI build | |
| run: ./gradlew :data-loader:cli:build --no-daemon --stacktrace | |