FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
llama-cpp-python/.github/workflows/test.yaml at main · rckumar/llama-cpp-python · GitHub
rckumar
/
llama-cpp-python
Public
forked from
abetlen/llama-cpp-python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
llama-cpp-python
/
.github
/
workflows
/
test.yaml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
79 lines (69 loc) · 2.04 KB
Breadcrumbs
llama-cpp-python
/
.github
/
workflows
/
test.yaml
Copy path
File metadata and controls
79 lines (69 loc) · 2.04 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
name
:
Tests
on
:
pull_request
:
branches
:
-
main
push
:
branches
:
-
main
jobs
:
build-linux
:
runs-on
:
ubuntu-latest
strategy
:
matrix
:
python-version
:
["3.7", "3.8", "3.9", "3.10", "3.11"]
steps
:
-
uses
:
actions/checkout@v3
with
:
submodules
:
"
true
"
-
name
:
Set up Python ${{ matrix.python-version }}
uses
:
actions/setup-python@v4
with
:
python-version
:
${{ matrix.python-version }}
-
name
:
Install dependencies
run
:
|
python -m pip install --upgrade pip pytest cmake scikit-build setuptools fastapi sse-starlette httpx uvicorn pydantic-settings
pip install . -v
-
name
:
Test with pytest
run
:
|
pytest
build-windows
:
runs-on
:
windows-latest
strategy
:
matrix
:
python-version
:
["3.7", "3.8", "3.9", "3.10", "3.11"]
steps
:
-
uses
:
actions/checkout@v3
with
:
submodules
:
"
true
"
-
name
:
Set up Python ${{ matrix.python-version }}
uses
:
actions/setup-python@v4
with
:
python-version
:
${{ matrix.python-version }}
-
name
:
Install dependencies
run
:
|
python -m pip install --upgrade pip pytest cmake scikit-build setuptools fastapi sse-starlette httpx uvicorn pydantic-settings
pip install . -v
-
name
:
Test with pytest
run
:
|
pytest
build-macos
:
runs-on
:
macos-latest
strategy
:
matrix
:
python-version
:
["3.7", "3.8", "3.9", "3.10", "3.11"]
steps
:
-
uses
:
actions/checkout@v3
with
:
submodules
:
"
true
"
-
name
:
Set up Python ${{ matrix.python-version }}
uses
:
actions/setup-python@v4
with
:
python-version
:
${{ matrix.python-version }}
-
name
:
Install dependencies
run
:
|
python -m pip install --upgrade pip pytest cmake scikit-build setuptools fastapi sse-starlette httpx uvicorn pydantic-settings
pip install . -v
-
name
:
Test with pytest
run
:
|
pytest
Back
|
FazBrowse Home
|
New Git URL