Skip to content
Open
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
docs/reference/**/*.html linguist-generated=true
11 changes: 10 additions & 1 deletion .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
env:
CI_LARGE_SOCKET_MODE_PAYLOAD_TESTING_DISABLED: "1"
FORCE_COLOR: "1"
LATEST_PYTHON_VERSION: "3.13"
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
Expand All @@ -53,6 +54,14 @@ jobs:
pip install "SQLAlchemy>=1.4,<2"
PYTHONPATH=$PWD:$PYTHONPATH pytest tests/slack_sdk/oauth/installation_store/test_sqlalchemy.py
PYTHONPATH=$PWD:$PYTHONPATH pytest tests/slack_sdk/oauth/state_store/test_sqlalchemy.py
- name: Confirm expected autogenerated reference exists
if: startsWith(matrix.python-version, env.LATEST_PYTHON_VERSION)
run: |
python -m venv .venv
source .venv/bin/activate
bash ./scripts/generate_api_docs.sh
git diff
git diff --quiet
- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@47f89e9acb64b76debcd5ea40642d25a4adced9f # v1.1.1
Expand All @@ -62,7 +71,7 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
- name: Upload test coverage to Codecov (only with latest supported version)
if: startsWith(matrix.python-version, '3.13')
if: startsWith(matrix.python-version, env.LATEST_PYTHON_VERSION)
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down
238 changes: 217 additions & 21 deletions docs/reference/index.html

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions docs/reference/models/blocks/basic_components.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

118 changes: 118 additions & 0 deletions docs/reference/models/blocks/blocks.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading