Skip to content

Commit 5a68757

Browse files
author
Walid Sobhi
committed
Add CI/CD workflow
1 parent 8b24207 commit 5a68757

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/test.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Test
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- name: Set up Python
11+
uses: actions/setup-python@v5
12+
with:
13+
python-version: '3.10'
14+
- name: Test query engine
15+
run: python query_engine.py "How does this work?"

0 commit comments

Comments
 (0)