We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdbb192 commit a047068Copy full SHA for a047068
.github/workflows/ruby-core.yml
@@ -57,3 +57,16 @@ jobs:
57
- name: Test RDoc
58
run: make -j2 -s test-all TESTS="rdoc --no-retry"
59
working-directory: ruby/ruby
60
+ - name: Generate Documentation with RDoc
61
+ run: make html
62
+ working-directory: ruby/ruby
63
+ # We need to clear the generated documentation to generate them again
64
+ # with the Prism parser.
65
+ - name: Clear Generated Documentation
66
+ run: rm -r .ext/html
67
68
+ - name: Generate Documentation with RDoc (Prism parser)
69
70
71
+ env:
72
+ RDOC_USE_PRISM_PARSER: true
0 commit comments