diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-08-20 11:02:43 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-08-20 11:02:43 -0400 |
commit | 126bb05db87276d9289ee7772e3e0a06905c9dfe (patch) | |
tree | 786a47f8e9aa988913e42abbc4921b35f88252ca | |
parent | f4edf7934cc0048afd5f1474421bab795a252c54 (diff) | |
download | stasis-126bb05db87276d9289ee7772e3e0a06905c9dfe.tar.gz |
Add pandoc dependency
-rw-r--r-- | .github/workflows/cmake-multi-platform.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index 0a30f4c..79cdf87 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -45,7 +45,12 @@ jobs: - name: Install Linux dependencies if: matrix.os == 'ubuntu-latest' run: > - sudo apt install -y libcurl4-openssl-dev libxml2-dev libxml2-utils rsync + sudo apt install -y + libcurl4-openssl-dev + libxml2-dev + libxml2-utils + pandoc + rsync - name: Configure CMake run: > |