Skip to content

Commit 626ab38

Browse files
committed
Test Sphinx's master branch distinctly from ordinary tests
1 parent e4cbf03 commit 626ab38

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/test.yml

+17
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,23 @@ jobs:
4141
if: "endsWith(matrix.python, '-dev')"
4242
with:
4343
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"
4461
- name: Install dependencies
4562
run: |
4663
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)