[3af7d7]: / .github / workflows / tests_talk2knowledgegraphs.yml

Download this file

398 lines (343 with data), 11.7 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
# This is a basic workflow to help you get started with GitHub Actions
name: TESTS Talk2KnowledgeGraphs
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events
pull_request:
branches: [ main ]
paths:
- 'aiagents4pharma/talk2knowledgegraphs/**'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
# This workflow contains jobs covering linting and code coverage (along with testing).
jobs:
# pylint job for macos
pylint-macos:
# The type of runner that the job will run on
name: pylint
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-13]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Cache files
uses: actions/cache@v4
id: cache
with:
path: |
${{ github.workspace }}/venv/*
key: ${{ runner.os }}-venv
# install requirements
- name: Install the requirements
if: steps.cache.outputs.cache-hit != 'true'
working-directory: ${{ github.workspace }}
run: |
python3 -m venv venv
source venv/bin/activate
pip install --upgrade pip
pip3 install --break-system-packages -r requirements.txt
# pylint
- name: Run pylint
working-directory: ${{ github.workspace }}
run: |
source venv/bin/activate
pylint --disable=R0801,R0902,W0221,W0122 aiagents4pharma/talk2knowledgegraphs
# pylint job for ubuntu
pylint-ubuntu:
# The type of runner that the job will run on
name: pylint
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Cache files
uses: actions/cache@v4
id: cache
with:
path: |
${{ github.workspace }}/venv/*
key: ${{ runner.os }}-venv
# install requirements
- name: Install the requirements
if: steps.cache.outputs.cache-hit != 'true'
working-directory: ${{ github.workspace }}
run: |
python3 -m venv venv
source venv/bin/activate
pip install --upgrade pip
pip3 install --break-system-packages -r requirements.txt
# pylint
- name: Run pylint
working-directory: ${{ github.workspace }}
run: |
source venv/bin/activate
pylint --disable=R0801,R0902,W0221,W0122 aiagents4pharma/talk2knowledgegraphs
# pylint job for windows
pylint-windows:
# The type of runner that the job will run on
name: pylint
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Cache files
uses: actions/cache@v4
id: cache
with:
path: |
${{ github.workspace }}\venv\*
key: ${{ runner.os }}-venv
# install requirements
- name: Install the requirements
if: steps.cache.outputs.cache-hit != 'true'
working-directory: ${{ github.workspace }}
run: |
python3 -m venv venv
venv\Scripts\activate
pip install --upgrade pip
pip3 install --break-system-packages -r requirements.txt
# pylint
- name: Run pylint
working-directory: ${{ github.workspace }}
run: |
venv\Scripts\activate
pylint --disable=R0801,R0902,W0221,W0122 aiagents4pharma/talk2knowledgegraphs
# code coverage job for macos
code-cov-macos:
name: code-coverage
needs: pylint-macos
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-13]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Cache venv
uses: actions/cache@v4
id: cache_venv
with:
path: |
${{ github.workspace }}/venv/*
key: ${{ runner.os }}-venv
- name: Cache Ollama models
uses: actions/cache@v4
id: cache_ollama
with:
path: |
/Users/runner/.ollama/models/*
key: ${{ runner.os }}-ollama
- name: Install and Pull Ollama models
if: steps.cache_ollama.outputs.cache-hit != 'true'
working-directory: ${{ github.workspace }}
run: |
source venv/bin/activate
brew install ollama
ollama serve &
sleep 10
ollama pull llama3.2:1b
ollama list
- name: Reading cached Ollama models
working-directory: ${{ github.workspace }}
run: |
echo "Cache Hit Status - ${{ steps.cache_ollama.outputs.cache-hit }}"
source venv/bin/activate
brew install ollama
ollama serve &
sleep 10
ollama list
- name: Run tests with coverage
working-directory: ${{ github.workspace }}
run: |
source venv/bin/activate
coverage run --include=aiagents4pharma/talk2knowledgegraphs/* -m pytest --cache-clear aiagents4pharma/talk2knowledgegraphs/tests/
- name: Check coverage
working-directory: ${{ github.workspace }}
run: |
source venv/bin/activate
coverage report -m
TOTAL_COVERAGE=$(coverage report -m | awk 'END {print int($NF)}')
if [[ $TOTAL_COVERAGE -ne 100 ]]; then
echo "Code coverage is not 100%. Please check the coverage report."
exit 1
fi
env:
COVERAGE_FILE: './.coverage'
# code coverage job for ubuntu
code-cov-ubuntu:
name: code-coverage
needs: pylint-ubuntu
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Cache venv
uses: actions/cache@v4
id: cache_venv
with:
path: |
${{ github.workspace }}/venv/*
key: ${{ runner.os }}-venv
- name: Cache Ollama models
uses: actions/cache@v4
id: cache_ollama
with:
path: |
/usr/share/ollama/.ollama/models/*
test
key: ${{ runner.os }}-ollama
- name: Install and Pull Ollama models
if: steps.cache_ollama.outputs.cache-hit != 'true'
working-directory: ${{ github.workspace }}
run: |
mkdir test
echo "Hello, World!" > test/hello.txt
source venv/bin/activate
curl -fsSL https://ollama.com/install.sh | sh
ollama serve &
sleep 10
ollama pull llama3.2:1b
ls -l ~/.ollama/
ls -l /usr/share/ollama/.ollama/
- name: Reading cached Ollama models
working-directory: ${{ github.workspace }}
run: |
cat test/hello.txt
echo "Cache Hit Status - ${{ steps.cache_ollama.outputs.cache-hit }}"
source venv/bin/activate
curl -fsSL https://ollama.com/install.sh | sh
ollama serve &
sleep 10
mkdir -p ~/.ollama/models/
cp -r /usr/share/ollama/.ollama/models/* ~/.ollama/models/
ollama list
du -sh ~/.ollama/
du -sh /usr/share/ollama/.ollama/
- name: Run tests with coverage
working-directory: ${{ github.workspace }}
run: |
source venv/bin/activate
coverage run --include=aiagents4pharma/talk2knowledgegraphs/* -m pytest --cache-clear aiagents4pharma/talk2knowledgegraphs/tests/
- name: Check coverage
working-directory: ${{ github.workspace }}
run: |
source venv/bin/activate
coverage report -m
TOTAL_COVERAGE=$(coverage report -m | awk 'END {print int($NF)}')
if [[ $TOTAL_COVERAGE -ne 100 ]]; then
echo "Code coverage is not 100%. Please check the coverage report."
exit 1
fi
env:
COVERAGE_FILE: './.coverage'
# code coverage job for windows
code-cov-windows:
name: code-coverage
needs: pylint-windows
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Cache venv
uses: actions/cache@v4
id: cache_venv
with:
path: |
${{ github.workspace }}\venv\*
key: ${{ runner.os }}-venv
- name: Cache Ollama models
uses: actions/cache@v4
id: cache_ollama
with:
path: |
C:\Users\runneradmin\.ollama\models
key: ${{ runner.os }}-ollama
- name: Install and Pull Ollama models
if: steps.cache_ollama.outputs.cache-hit != 'true'
working-directory: ${{ github.workspace }}
run: |
venv\Scripts\activate
curl -L https://ollama.com/download/ollama-windows-amd64.zip -o ollama-windows-amd64.zip
tar -xzf .\ollama-windows-amd64.zip
start ollama serve
sleep 10
cmd /k ollama pull llama3.2:1b
cmd /k ollama list
- name: Reading cached Ollama models
working-directory: ${{ github.workspace }}
run: |
echo "Cache Hit Status - ${{ steps.cache_ollama.outputs.cache-hit }}"
venv\Scripts\activate
curl -L https://ollama.com/download/ollama-windows-amd64.zip -o ollama-windows-amd64.zip
tar -xzf .\ollama-windows-amd64.zip
start ollama serve
sleep 10
cmd /k ollama list
- name: Run tests with coverage
working-directory: ${{ github.workspace }}
run: |
venv\Scripts\activate
coverage run --include=aiagents4pharma/talk2knowledgegraphs/* -m pytest --cache-clear aiagents4pharma/talk2knowledgegraphs/tests/
- name: Check coverage
working-directory: ${{ github.workspace }}
run: |
venv\Scripts\activate
coverage report -m
# $TOTAL_COVERAGE=(& coverage report -m | Select-Object -Last 1) -replace "[^\d]" # Extract the last line and remove non-numeric characters
$TOTAL_COVERAGE=(& coverage report -m | Select-Object -Last 1)
# split and extract the last element
$TOTAL_COVERAGE=($TOTAL_COVERAGE -split " ")[-1]
# remove non-numeric characters
$TOTAL_COVERAGE=($TOTAL_COVERAGE -replace "[^\d]")
# convert to int
$TOTAL_COVERAGE=[int]$TOTAL_COVERAGE
echo "Total coverage: $TOTAL_COVERAGE"
if ($TOTAL_COVERAGE -ne 100) {
Write-Host "Code coverage is not 100%. Please check the coverage report."
exit 1
}
env:
COVERAGE_FILE: './.coverage'