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 22b4ba4 commit 0963310Copy full SHA for 0963310
.github/workflows/ci.yml
@@ -27,8 +27,13 @@ jobs:
27
- name: Install dependencies
28
run: pdm install -G toc -G codehilite
29
- name: Run Tests
30
+ if: ${{ matrix.python-version == '3.11' }}
31
+ run: pdm run -v pytest tests
32
+ - name: Run Tests < 3.11
33
+ if: ${{ matrix.python-version != '3.11' }}
34
run: pdm run -v pytest --cov=marko/ --cov-report=xml tests
35
- name: Upload coverage to Codecov
36
37
uses: codecov/codecov-action@v1
38
with:
39
token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments