From f0cda65379cb24d9b53c6a082389d8c60314ce7f Mon Sep 17 00:00:00 2001 From: Kumaran Rajendhiran Date: Tue, 26 Nov 2024 15:07:16 +0530 Subject: [PATCH 1/3] I am strange --- faststream/dummy.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/faststream/dummy.py b/faststream/dummy.py index 83e3e7f888..bdaff71520 100644 --- a/faststream/dummy.py +++ b/faststream/dummy.py @@ -5,3 +5,16 @@ def __init__(self) -> None: def dummy_method(self) -> str: return "dummy" + + + + +class Strange: + def __init__(self) -> None: + pass + + def strange_method(self) -> str: + return "strange" + + + From 2b8498ec1f80e329b313a141517808ec23a9f3b4 Mon Sep 17 00:00:00 2001 From: kumaranvpl Date: Tue, 26 Nov 2024 09:41:36 +0000 Subject: [PATCH 2/3] docs: generate API References --- docs/docs/SUMMARY.md | 1 + docs/docs/en/api/faststream/dummy/Strange.md | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 docs/docs/en/api/faststream/dummy/Strange.md diff --git a/docs/docs/SUMMARY.md b/docs/docs/SUMMARY.md index cd54f79d3e..fb0c89ac0b 100644 --- a/docs/docs/SUMMARY.md +++ b/docs/docs/SUMMARY.md @@ -583,6 +583,7 @@ search: - [ContentTypes](api/faststream/constants/ContentTypes.md) - dummy - [Dummy](api/faststream/dummy/Dummy.md) + - [Strange](api/faststream/dummy/Strange.md) - exceptions - [AckMessage](api/faststream/exceptions/AckMessage.md) - [FastStreamException](api/faststream/exceptions/FastStreamException.md) diff --git a/docs/docs/en/api/faststream/dummy/Strange.md b/docs/docs/en/api/faststream/dummy/Strange.md new file mode 100644 index 0000000000..822cbb7b7e --- /dev/null +++ b/docs/docs/en/api/faststream/dummy/Strange.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.dummy.Strange From 86d84dc4194095a9de9c7639dae760e2c9df4438 Mon Sep 17 00:00:00 2001 From: Kumaran Rajendhiran Date: Tue, 26 Nov 2024 15:13:18 +0530 Subject: [PATCH 3/3] Run git commands --- .github/workflows/pr_lint.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pr_lint.yaml b/.github/workflows/pr_lint.yaml index a5abaedfd0..f2f70a7907 100644 --- a/.github/workflows/pr_lint.yaml +++ b/.github/workflows/pr_lint.yaml @@ -35,6 +35,8 @@ jobs: continue-on-error: true with: extra_args: --hook-stage manual --all-files + - run: git status + - run: git diff - name: Commit uses: stefanzweifel/git-auto-commit-action@v5 with: