feat: make stream_handler_executor publicly settable. #137
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: Pre-release Tests | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| if: github.ref_name == 'release-please--branches--main' || github.head_ref == 'release-please--branches--main' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| cache: 'maven' | |
| - name: Install Root | |
| run: mvn -B -ntp install -DskipTests -Djacoco.skip=true -Dclirr.skip=true | |
| - name: Compile Examples | |
| run: mvn -B -ntp compile -f examples/pom.xml | |
| - name: Generate Javadoc | |
| run: mvn -B -ntp package -DperformRelease=true -DskipTests -Djacoco.skip=true -Dclirr.skip=true |