Skip to content

Commit

Permalink
fix(ci): revert workflow change
Browse files Browse the repository at this point in the history
Signed-off-by: Frost Ming <me@frostming.com>
  • Loading branch information
frostming committed Feb 22, 2024
1 parent 22b4ba4 commit 0963310
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,13 @@ jobs:
- name: Install dependencies
run: pdm install -G toc -G codehilite
- name: Run Tests
if: ${{ matrix.python-version == '3.11' }}
run: pdm run -v pytest tests
- name: Run Tests < 3.11
if: ${{ matrix.python-version != '3.11' }}
run: pdm run -v pytest --cov=marko/ --cov-report=xml tests
- name: Upload coverage to Codecov
if: ${{ matrix.python-version != '3.11' }}
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down

0 comments on commit 0963310

Please sign in to comment.