Skip to content

fix: correctly return number of bytes read from chunked streams #172

fix: correctly return number of bytes read from chunked streams

fix: correctly return number of bytes read from chunked streams #172

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