From 51261e46f8e09c1bc51d80b8ef75e3d852d57174 Mon Sep 17 00:00:00 2001 From: Mark Pollack Date: Sun, 8 Dec 2024 23:17:46 -0500 Subject: [PATCH] Add Ollama service to CI job --- .github/workflows/continuous-integration.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 7ace44dde..9dd8383ef 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -8,6 +8,13 @@ jobs: build: name: Build branch runs-on: ubuntu-latest + services: + ollama: + image: ollama/ollama:latest + ports: + - 11434:11434 + env: + OLLAMA_WITH_REUSE: true steps: - name: Checkout source code uses: actions/checkout@v4