From df6079426647faf9c739665687469a2c835e4c81 Mon Sep 17 00:00:00 2001 From: Stan Lo Date: Sun, 5 Jan 2025 13:14:59 +0000 Subject: [PATCH] Run ruby/ruby doc generation on CI --- .github/workflows/ruby-core.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ruby-core.yml b/.github/workflows/ruby-core.yml index 929246bb71..32d288f67b 100644 --- a/.github/workflows/ruby-core.yml +++ b/.github/workflows/ruby-core.yml @@ -44,7 +44,7 @@ jobs: - name: Build Ruby run: | autoconf - ./configure -C --disable-install-doc + ./configure make -j2 working-directory: ruby/ruby - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3.1.0 @@ -57,3 +57,11 @@ jobs: - name: Test RDoc run: make -j2 -s test-all TESTS="rdoc --no-retry" working-directory: ruby/ruby + - name: Generate Documentation with RDoc + run: make html + working-directory: ruby/ruby + - name: Generate Documentation with RDoc (Prism parser) + run: make html + working-directory: ruby/ruby + env: + RDOC_USE_PRISM_PARSER: true