fix: correctly return number of bytes read from chunked streams #172
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: Release readiness (snapshot dependency) | |
description: > | |
Makes sure that we aren't relying on SNAPSHOT/dev versions of aws-crt-kotlin before merging | |
Otherwise we could forget because the rest of CI is masking it | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
release-readiness: | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ready-for-release') }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Configure Gradle | |
uses: awslabs/aws-kotlin-repo-tools/.github/actions/configure-gradle@main | |
- name: Build smithy-kotlin | |
run: ./gradlew test jvmTest | |
- name: Emit error message | |
if: ${{ failure() }} | |
run: | | |
echo "::error ::Build failed. Did you forget to release aws-crt-kotlin and bump the dependency version?" | |
exit 1 |