We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bca5e2 commit 3ba1787Copy full SHA for 3ba1787
.github/workflows/docs.yml
@@ -3,6 +3,22 @@ name: Generate Python Documentation
3
on: [pull_request]
4
5
jobs:
6
+ check-docstrings:
7
+ runs-on: ubuntu-22.04
8
+ steps:
9
+ - uses: actions/checkout@v3
10
+ - name: Set up Python 3.10
11
+ uses: actions/setup-python@v4
12
+ with:
13
+ python-version: "3.10"
14
+ cache: 'pip' # caching pip dependencies
15
+ - name: Install dependencies
16
+ run: |
17
+ python -m pip install --upgrade pip
18
+ pip install .[dev]
19
+ - name : Check import order
20
+ run : pydocstyle src/ --convention google --count
21
+
22
build-docs:
23
runs-on: ubuntu-22.04
24
steps:
0 commit comments