File tree 3 files changed +154
-106
lines changed
3 files changed +154
-106
lines changed Original file line number Diff line number Diff line change 85
85
- name : Run tests (with prefix_symbols)
86
86
run : cargo test --features prefix_symbols --verbose
87
87
88
+ markdown_lint :
89
+ runs-on : ubuntu-latest
90
+ steps :
91
+ - uses : actions/checkout@v4
92
+ - uses : DavidAnson/markdownlint-cli2-action@v18
93
+ with :
94
+ config : ' .markdownlint.yaml'
95
+ globs : ' **/README.md'
96
+
88
97
# NOTE: In GitHub repository settings, the "Require status checks to pass
89
98
# before merging" branch protection rule ensures that commits are only merged
90
99
# from branches where specific status checks have passed. These checks are
93
102
ci :
94
103
name : CI status checks
95
104
runs-on : ubuntu-latest
96
- needs : build
105
+ needs : [ build, markdown_lint]
97
106
if : always()
98
107
steps :
99
108
- name : Check whether all jobs pass
Original file line number Diff line number Diff line change
1
+ {
2
+ " MD013 " : false, # Line length limitation
3
+ " MD033 " : false, # Enable Inline HTML
4
+ " MD041 " : false, # Allow first line heading
5
+ " MD045 " : false, # Allow Images have no alternate text
6
+ }
You can’t perform that action at this time.
0 commit comments