Skip to content

Commit 0963310

Browse files
committed
fix(ci): revert workflow change
Signed-off-by: Frost Ming <me@frostming.com>
1 parent 22b4ba4 commit 0963310

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,13 @@ jobs:
2727
- name: Install dependencies
2828
run: pdm install -G toc -G codehilite
2929
- 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' }}
3034
run: pdm run -v pytest --cov=marko/ --cov-report=xml tests
3135
- name: Upload coverage to Codecov
36+
if: ${{ matrix.python-version != '3.11' }}
3237
uses: codecov/codecov-action@v1
3338
with:
3439
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)