Refactor(lambda managed instances): rename experimental-concurrency feature -> concurrency-tokio, make run() + AWS_LAMBDA_MAX_CONCURRENCY add a warn log line rather than error out
#301
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: Check rustdocs | |
| # this is its own workflow since we to to use unstable | |
| # to have the docs.rs display of feature flags | |
| on: | |
| push: | |
| paths: | |
| - 'lambda-runtime/**' | |
| - 'lambda-runtime-api-client/**' | |
| - 'lambda-http/**' | |
| - 'lambda-events/**' | |
| - 'lambda-extension/**' | |
| - 'Cargo.toml' | |
| pull_request: | |
| paths: | |
| - 'lambda-runtime/**' | |
| - 'lambda-runtime-api-client/**' | |
| - 'lambda-http/**' | |
| - 'lambda-events/**' | |
| - 'lambda-extension/**' | |
| - 'Cargo.toml' | |
| permissions: | |
| contents: read | |
| jobs: | |
| build-runtime: | |
| runs-on: ubuntu-latest | |
| env: | |
| RUST_BACKTRACE: 1 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: dtolnay/rust-toolchain@nightly | |
| - name: Check documentation | |
| shell: bash | |
| env: | |
| RUSTDOCFLAGS: --cfg docsrs -Dwarnings | |
| run: cargo doc --workspace --no-deps --document-private-items --all-features |