From 912eccf0f926623cd1066b8838b47a66e4c2a0f8 Mon Sep 17 00:00:00 2001 From: Petr Pavlu Date: Thu, 26 Sep 2024 20:50:58 +0200 Subject: [PATCH] Install pandoc in the GitHub CI --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 984a349..a043899 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,6 +31,8 @@ jobs: rustup update ${{ matrix.toolchain }} rustup default ${{ matrix.toolchain }} fi + - name: Install build dependencies + run: zypper --non-interactive install pandoc - name: Build the project run: cargo build - name: Run tests