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 316094e commit 27bce74Copy full SHA for 27bce74
.github/workflows/tests.yaml
@@ -59,6 +59,29 @@ jobs:
59
with:
60
token: ${{ secrets.CODECOV_TOKEN }}
61
62
+ # Run mdformat-gfm's tests to catch issues like https://github.com/hukkin/mdformat/issues/501.
63
+ test-gfm-plugin:
64
+ runs-on: ubuntu-latest
65
+ continue-on-error: true
66
+
67
+ steps:
68
+ - uses: actions/setup-python@v5
69
+ with:
70
+ python-version: '3.x'
71
+ - uses: actions/checkout@v4
72
73
+ path: mdformat/
74
75
76
+ repository: hukkin/mdformat-gfm
77
+ path: mdformat-gfm/
78
+ - run: |
79
+ pip install pytest
80
+ pip install --editable mdformat-gfm/
81
+ pip install --force-reinstall --editable mdformat/
82
83
+ pytest mdformat-gfm/
84
85
allgood:
86
runs-on: ubuntu-latest
87
needs:
0 commit comments