Skip to content

chore: prepare lambda_http@0.17.0, lambda_events@0.18.0, lambda_runtime_api_client@0.12.4, lambda_runtime@0.14.4 #114

chore: prepare lambda_http@0.17.0, lambda_events@0.18.0, lambda_runtime_api_client@0.12.4, lambda_runtime@0.14.4

chore: prepare lambda_http@0.17.0, lambda_events@0.18.0, lambda_runtime_api_client@0.12.4, lambda_runtime@0.14.4 #114

Workflow file for this run

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'
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:
RUSTFLAGS: --cfg docsrs
RUSTDOCFLAGS: --cfg docsrs -Dwarnings
run: cargo doc --no-deps --document-private-items --all-features