Add DeepBulkUpdateResult to give fine-grained information to the caller about failed/successful keys in batch updates
#1408
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: build and validate | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request_target: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| # Set fetch-depth: 0 to fetch commit history and tags for use in version calculation | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{github.event.pull_request.head.ref}} | |
| repository: ${{github.event.pull_request.head.repo.full_name}} | |
| fetch-depth: 0 | |
| - name: Build with Gradle | |
| uses: hypertrace/github-actions/gradle@main | |
| with: | |
| args: build | |