File tree Expand file tree Collapse file tree 3 files changed +12
-7
lines changed Expand file tree Collapse file tree 3 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 22
22
23
23
- name : Tests
24
24
run : |
25
- bash ./ test/tests.sh
25
+ make test
Original file line number Diff line number Diff line change @@ -6,16 +6,14 @@ to add more features to it.
6
6
## Manpage
7
7
8
8
To update the manpage, edit ` man/rfc.md ` ([ format documentation] [ format ] ), then
9
- run ` ronn man/rfc.md ` .
9
+ run ` make ` .
10
10
11
- You can install [ ` ronn ` ] [ ronn ] with ` gem install ronn ` .
11
+ You need [ ` ronn ` ] [ ronn ] ; install it with ` gem install ronn-ng ` .
12
12
13
- [ ronn ] : https://github.com/rtomayko /ronn#ronn
13
+ [ ronn ] : https://github.com/apjanke /ronn-ng?tab=readme-ov-file #ronn-ng
14
14
[ format ] : https://rtomayko.github.io/ronn/ronn-format.7.html
15
15
16
16
## Tests
17
17
18
- You can run tests with the following command:
19
-
20
- ./test/tests.sh
18
+ Run tests with ` make test ` .
21
19
Original file line number Diff line number Diff line change
1
+ .PHONY : test
2
+
3
+ man/rfc.1 : man/rfc.md
4
+ ronn --warnings --roff $<
5
+
6
+ test :
7
+ bash test/tests.sh
You can’t perform that action at this time.
0 commit comments