We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6b8d51 commit 4304636Copy full SHA for 4304636
.github/workflows/ci.yml
@@ -7,6 +7,23 @@ jobs:
7
steps:
8
- name: Check out repository
9
uses: actions/checkout@v4
10
+ - name: Install Ollama
11
+ run: |
12
+ curl -fsSL https://ollama.com/install.sh | sudo -E sh
13
+ - name: Start serving
14
15
+ # Run the background, there is no way to daemonise at the moment
16
+ ollama serve &
17
+
18
+ # A short pause is required before the HTTP port is opened
19
+ sleep 5
20
21
+ # This endpoint blocks until ready
22
+ time curl -i http://localhost:11434
23
24
+ - name: Pull mistral model
25
26
+ ollama pull mistral
27
- name: Set up MATLAB
28
uses: matlab-actions/setup-matlab@v2
29
with:
0 commit comments