File tree 3 files changed +29
-5
lines changed
3 files changed +29
-5
lines changed Original file line number Diff line number Diff line change
1
+ name : Markdown style check
2
+ on :
3
+ pull_request :
4
+ merge_group :
5
+ push :
6
+ branches :
7
+ - main
8
+
9
+ jobs :
10
+ md-style-checker :
11
+ name : Check Markdown Style
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - name : Checkout repository
15
+ uses : actions/checkout@v4
16
+
17
+ - name : Install mdformat
18
+ run : |
19
+ apt update
20
+ apt install python3 python3-pip pipx
21
+ pipx install mdformat
22
+ pipx inject mdformat mdformat-gfm mdformat-frontmatter mdformat-footnote mdformat-gfm-alerts
23
+
24
+ - name : Check Content Style
25
+ run : |
26
+ mdformat --check .
Original file line number Diff line number Diff line change 2
2
3
3
# How to Manage Mono-repo
4
4
5
- - [ Firecraker] ( )
6
- - [ Markdown Files] ( repo-management/firecracker/markdown.md )
7
- - [ Rust Files] ( repo-management/firecracker/rustfmt.md )
5
+ - [ Firecraker] ( < > )
6
+ - [ Markdown Files] ( repo-management/firecracker/markdown.md )
7
+ - [ Rust Files] ( repo-management/firecracker/rustfmt.md )
Original file line number Diff line number Diff line change @@ -10,5 +10,3 @@ cloud. State-of-the-art nested virtualization in the x86 architecture relies
10
10
heavily on the host hypervisor to expose hardware virtualization support to the
11
11
guest hypervisor, not only complicating cloud management but also raising
12
12
concerns about an increased attack surface at the host hypervisor.
13
-
14
-
You can’t perform that action at this time.
0 commit comments