pradyumn tendulkar commited on
Commit
fd00de7
·
unverified ·
1 Parent(s): bc4eb9f

Create test.yml

Browse files
Files changed (1) hide show
  1. .github/workflows/test.yml +24 -0
.github/workflows/test.yml ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Run Resume Matcher Tests
2
+
3
+ on:
4
+ push:
5
+ pull_request:
6
+
7
+ jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
+
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+
14
+ - uses: actions/setup-python@v5
15
+ with:
16
+ python-version: "3.11"
17
+
18
+ - name: Install dependencies
19
+ run: |
20
+ pip install --upgrade pip
21
+ pip install pytest gradio sentence-transformers transformers torch scikit-learn python-docx PyMuPDF numpy
22
+
23
+ - name: Run pytest
24
+ run: pytest -q