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 b849ccf commit 7325c1bCopy full SHA for 7325c1b
.github/workflows/tests-unit.yml
@@ -0,0 +1,31 @@
1
+name: Doctest
2
+
3
+on:
4
+ push:
5
+ paths-ignore:
6
+ - 'notebooks/**'
7
8
+jobs:
9
+ test-doctest-module:
10
+ runs-on: ubuntu-latest
11
+ strategy:
12
+ max-parallel: 4
13
+ matrix:
14
+ python: [3.8]
15
16
+ steps:
17
+ - uses: actions/checkout@v2
18
+ - name: Set up Python ${{ matrix.python }}
19
+ uses: actions/setup-python@v1
20
+ with:
21
+ python-version: ${{ matrix.python }}
22
23
+ - name: Install dependencies
24
+ run: |
25
+ python -m pip install --upgrade pip
26
+ python -m pip install tox
27
+ python -m pip install tox-pip-extensions
28
29
+ - name: Run Doctests
30
31
+ make tests-doctest-modules
0 commit comments