From 35a0f7e503bf4a84ff09f3a008d62c7094dad811 Mon Sep 17 00:00:00 2001 From: quillcraftsman Date: Fri, 1 Mar 2024 19:57:50 +0300 Subject: [PATCH] add xvfb to build documentation --- .github/workflows/docs.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index cf9a9d9..7c8a1e1 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -41,10 +41,12 @@ jobs: python -m pip install --upgrade pip pip install -r requirements.txt pip install -r doc-requirements.txt - - name: Build documentation - run: | - cd docs - make html + - name: Build documentation with xvfb + uses: coactions/setup-xvfb@v1 + with: + run: | + cd docs + make html - name: Setup Pages uses: actions/configure-pages@v3 - name: Upload artifact