Skip to content

Commit a70ec6d

Browse files
committed
.
1 parent cf5bed3 commit a70ec6d

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

.github/workflows/check-docs.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,20 @@ name: Check rustdocs
55
on:
66
push:
77
paths:
8-
- 'lambda*'
8+
- 'lambda-runtime/**'
9+
- 'lambda-runtime-api-client/**'
10+
- 'lambda-http/**'
11+
- 'lambda-events/**'
12+
- 'lambda-extension/**'
913
- 'Cargo.toml'
1014

1115
pull_request:
1216
paths:
13-
- 'lambda*'
17+
- 'lambda-runtime/**'
18+
- 'lambda-runtime-api-client/**'
19+
- 'lambda-http/**'
20+
- 'lambda-events/**'
21+
- 'lambda-extension/**'
1422
- 'Cargo.toml'
1523

1624
jobs:
@@ -20,9 +28,8 @@ jobs:
2028
env:
2129
RUST_BACKTRACE: 1
2230
steps:
23-
- uses: dtolnay/rust-toolchain@master
24-
with:
25-
toolchain: unstable
31+
- uses: actions/checkout@v3
32+
- uses: dtolnay/rust-toolchain@nightly
2633

2734
- name: Check documentation
2835
shell: bash

lambda-extension/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pub use telemetry::*;
2424
/// Include several request builders to interact with the Extension API.
2525
pub mod requests;
2626

27-
/// Utilities to initialize and use `tracing` and `tracing-subscriber` in Lambda Functions.
27+
/// Utilities to initialize and use `tracing` and `tracing-subscriber` in Lambda Functions. Foo
2828
#[cfg(feature = "tracing")]
2929
pub use lambda_runtime_api_client::tracing;
3030

0 commit comments

Comments
 (0)