We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59d5384 commit b2f63f0Copy full SHA for b2f63f0
1 file changed
.github/workflows/tests.yml
@@ -69,6 +69,26 @@ jobs:
69
# file: ./coverage.xml
70
# fail_ci_if_error: true
71
72
+ # This uses a different job to allow failures
73
+ test-sphinx-upstream:
74
+ runs-on: ubuntu-latest
75
+
76
+ name: "pytest: py3, sphinx master, on ubuntu-latest"
77
78
+ steps:
79
+ - uses: actions/checkout@v6
80
+ - name: Set up Python 3
81
+ uses: actions/setup-python@v6
82
+ with:
83
+ python-version: 3
84
+ allow-prereleases: true
85
+ - name: Install dependencies
86
+ run: |
87
+ python -m pip install --upgrade pip
88
+ pip install -e ".[linkify,testing]" "sphinx @ git+https://github.com/sphinx-doc/sphinx.git"
89
+ - name: Run pytest
90
+ run: pytest
91
92
check-myst-docutils:
93
94
name: Check myst-docutils install
0 commit comments