File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 8686 name : Regression notifications
8787 runs-on : ubuntu-latest
8888 needs : build
89- if : failure () && github.ref == 'refs/heads/main' && github.event_name != 'workflow_dispatch'
89+ if : ${{ !success () && github.ref == 'refs/heads/main' && github.event_name != 'workflow_dispatch' }}
9090 steps :
9191 - name : Send notifications of failing tests
9292 uses : slackapi/slack-github-action@91efab103c0de0a537f72a35f6b8cda0ee76bf0a # v2.1.1
Original file line number Diff line number Diff line change 1- mypy==1.17.1
1+ mypy==1.18.2
22flake8==7.3.0
33black==25.1.0
Original file line number Diff line number Diff line change 11#! /bin/bash
22# Generate API documents from the latest source code
33
4- script_dir=` dirname $0 `
5- cd ${script_dir} /..
4+ set -e
5+ script_dir=$( dirname " $0 " )
6+ cd " ${script_dir} /.."
67
8+ pip install -U pip
9+ pip install -U -r requirements/adapter.txt
10+ pip install -U -r requirements/async.txt
711pip install -U pdoc3
12+ pip install .
813rm -rf docs/reference
914
1015pdoc slack_bolt --html -o docs/reference
You can’t perform that action at this time.
0 commit comments