[kernel-spark] Add getStartingVersion() for obtaining the initial offset for DSv2 streaming #11127
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: "Unidoc" | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| name: "U: Scala ${{ matrix.scala }}" | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| # These Scala versions must match those in the build.sbt | |
| scala: [2.13.13, 2.12.18] | |
| steps: | |
| - name: install java | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: "zulu" | |
| java-version: "11" | |
| - uses: actions/checkout@v3 | |
| - name: generate unidoc | |
| run: build/sbt "++ ${{ matrix.scala }}" unidoc |