From 5038312d36eaaa4af1ea294c197dd80ee4303281 Mon Sep 17 00:00:00 2001 From: Philipp Temminghoff Date: Mon, 28 Oct 2024 03:11:29 +0100 Subject: [PATCH] build: add llm api key to github action --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bd74059..f5580b3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,6 +36,8 @@ jobs: run: uv run mypy src/jinjarope/ - name: Run tests + env: + GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }} run: uv run pytest --cov-report=xml - name: Upload test results to Codecov