From eef9edc3976f581358c56ad5dbc42e00c8d23a45 Mon Sep 17 00:00:00 2001 From: "Paul K. Gerke" Date: Tue, 14 May 2024 21:56:45 +0200 Subject: [PATCH] Add pandoc to ci.yml --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e3b4057..bb6aafd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,6 +14,11 @@ jobs: runs-on: ubuntu-latest steps: + - name: Install Pandoc + run: | + sudo apt-get update + sudo apt-get install -y pandoc + - name: Checkout code uses: actions/checkout@v2