Skip to content

Commit

Permalink
Give a proper name to the no_markdown-it-py job
Browse files Browse the repository at this point in the history
  • Loading branch information
mwouts committed Jan 12, 2024
1 parent 84bbebf commit abf091a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/step_tests-pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@ jobs:
name: >
🐍 ${{ matrix.python-version }}
${{ matrix.dependency_type && format('({0})', matrix.dependency_type) }}
${{ matrix.markdown-it-py && format('(markdown-it-py {0})', matrix.markdown-it-py) }}
${{ matrix.quarto && '(Quarto)' }}
${{ matrix.no_kernel && '(No kernel)' }}
${{ matrix.no_markdown-it-py && '(No markdown-it-py)' }}
${{ !matrix.no_markdown-it-py && format('(markdown-it-py {0})', matrix.markdown-it-py) }}
runs-on: ubuntu-latest

strategy:
Expand All @@ -36,7 +37,7 @@ jobs:
- python-version: "3.x"
markdown-it-py: "~=2.0"
- python-version: "3.x"
no_markdownitpy: true
no_markdown-it-py: true
- python-version: "3.x"
no_kernel: true
- python-version: "3.x"
Expand Down Expand Up @@ -66,7 +67,7 @@ jobs:
- name: Uninstall markdown-it-py
# Markdown-it-py is a dependency of Jupytext,
# but Jupytext should still work if it is not installed
if: ${{ matrix.no_markdownitpy }}
if: ${{ matrix.no_markdown-it-py }}
run: python -m pip uninstall markdown-it-py --yes

- name: Install Quarto
Expand Down

0 comments on commit abf091a

Please sign in to comment.