From 48f26ae9490f86343f793cff6cc5de878c52797a Mon Sep 17 00:00:00 2001 From: lranzani Date: Mon, 2 Dec 2024 10:15:40 -0500 Subject: [PATCH] Tried installing pandoc with sudo --- .github/workflows/actions-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/actions-test.yml b/.github/workflows/actions-test.yml index edf4f184..cb5a2e40 100644 --- a/.github/workflows/actions-test.yml +++ b/.github/workflows/actions-test.yml @@ -59,10 +59,10 @@ jobs: run: | pip install -e . python -m unittest discover -v test - - name: Documentation Environment - uses: docker://pandoc/core:3.5 - name: Build Documentation run: | + sudo apt-get install pandoc + pip install pandoc cd doc make html cd ..