We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4cbf03 commit 626ab38Copy full SHA for 626ab38
.github/workflows/test.yml
@@ -41,6 +41,23 @@ jobs:
41
if: "endsWith(matrix.python, '-dev')"
42
with:
43
python-version: ${{ matrix.python }}
44
+ - name: Install dependencies
45
+ run: |
46
+ python -m pip install --upgrade pip
47
+ python -m pip install .[test]
48
+
49
+ - name: Test with pytest
50
+ run: python -m pytest --durations 25
51
52
+ test-latest-sphinx:
53
+ runs-on: ubuntu-latest
54
55
+ steps:
56
+ - uses: actions/checkout@v3
57
+ - name: Set up Python ${{ matrix.python }}
58
+ uses: actions/setup-python@v4
59
+ with:
60
+ python-version: "3"
61
- name: Install dependencies
62
run: |
63
python -m pip install --upgrade pip
0 commit comments