FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
fusion-engine/.github/workflows/ci.yml at main · luckeyfaraday/fusion-engine · GitHub
luckeyfaraday
/
fusion-engine
Public
Notifications
You must be signed in to change notification settings
Fork
1
Star
11
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
fusion-engine
/
.github
/
workflows
/
ci.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
26 lines (24 loc) · 744 Bytes
Breadcrumbs
fusion-engine
/
.github
/
workflows
/
ci.yml
Copy path
File metadata and controls
26 lines (24 loc) · 744 Bytes
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
name
:
CI
on
:
push
:
branches
:
[main]
pull_request
:
jobs
:
test
:
runs-on
:
ubuntu-latest
strategy
:
matrix
:
python-version
:
["3.10", "3.11", "3.12"]
steps
:
-
uses
:
actions/checkout@v4
-
uses
:
actions/setup-python@v5
with
:
python-version
:
${{ matrix.python-version }}
-
name
:
Install
run
:
python -m pip install --upgrade pip && python -m pip install -e ".[server,test]"
-
name
:
Compile
run
:
python -m py_compile cli.py fusion.py panels.py server.py evals/benchmarks.py evals/graders.py evals/prepare.py evals/report.py evals/run_eval.py evals/systems.py
-
name
:
Smoke CLI
run
:
python cli.py panels
-
name
:
Test
run
:
pytest -q
Back
|
FazBrowse Home
|
New Git URL