From 40aabc54e39a8067fb1e164d67bd37137a44b0e1 Mon Sep 17 00:00:00 2001 From: Tom Hu Date: Tue, 22 Oct 2024 10:41:19 -0500 Subject: [PATCH] fix: latex --- .github/workflows/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d1f11b6..6b37b84 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,3 +1,4 @@ +--- name: Workflow for Codecov Action on: [push, pull_request] permissions: @@ -14,6 +15,9 @@ jobs: uses: actions/checkout@v4.2.2 with: submodules: 'true' + # pip needs LaTeX? https://github.com/actions/setup-python/issues/821#issuecomment-2078641947 + - name: Install LaTeX + run: sudo apt-get install -y texlive-full - name: Install dependencies run: pip install -r src/scripts/app/requirements.txt - name: Run tests and collect coverage