File tree Expand file tree Collapse file tree 4 files changed +30
-3
lines changed Expand file tree Collapse file tree 4 files changed +30
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : Markdown Lint
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ pull_request :
8
+ branches :
9
+ - main
10
+
11
+ jobs :
12
+ markdownlint :
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - name : Checkout code
16
+ uses : actions/checkout@v3
17
+
18
+ - name : Run markdownlint with auto-fix
19
+ uses : DavidAnson/markdownlint-cli2-action@v19
20
+ with :
21
+ fix : true # Enable auto-fixing
22
+ globs : ' **/*.md' # Specify the files to lint
23
+ config : ' .markdownlint.json' # personal config file based over the choices told
Original file line number Diff line number Diff line change
1
+ {
2
+ "MD013" : false ,
3
+ "MD033" : false
4
+ }
Original file line number Diff line number Diff line change @@ -402,7 +402,7 @@ as non-DHCP static addresses.
402
402
403
403
- Create ` /etc/bootptab ` like this. Make sure not to drop the "%%" header.
404
404
405
- ```
405
+ ``` bash
406
406
# bootptab
407
407
%%
408
408
# hostname hwtype hwaddr ipaddr bootfile
@@ -411,7 +411,7 @@ tmp-vm01 1 de:ad:be:ef:00:01 192.168.105.100
411
411
412
412
- Reload the DHCP daemon.
413
413
414
- ```
414
+ ``` bas
415
415
sudo /bin/launchctl kickstart -kp system/com.apple.bootpd
416
416
```
417
417
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ test/perf.sh create -c 3 2>perf.log
32
32
Run all tests with shared and bridged modes, vz and qemu vm type,
33
33
using 1, 2, and 3 vms:
34
34
35
- ```
35
+ ``` bash
36
36
for v in vz qemu; do
37
37
for c in $( seq 3) ; do
38
38
test/perf.sh run -c $c -v $v 2>> perf.log
You can’t perform that action at this time.
0 commit comments