Skip to content

Commit 569f9ec

Browse files
committed
Try again
1 parent 33c375b commit 569f9ec

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/node.js.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,25 @@ jobs:
2323

2424
steps:
2525
- uses: actions/checkout@v3
26+
27+
# Set up Python for backend
28+
- name: Set up Python
29+
uses: actions/setup-python@v2
30+
with:
31+
python-version: '3.x'
32+
33+
- name: Install Python dependencies
34+
working-directory: backend
35+
run: |
36+
python -m pip install --upgrade pip
37+
pip install -r requirements.txt
38+
39+
- name: Run backend tests
40+
working-directory: backend
41+
run: |
42+
# Commands to run your backend tests
43+
pytest tests # Adjust as necessary
44+
2645
- name: Use Node.js ${{ matrix.node-version }}
2746
uses: actions/setup-node@v3
2847
with:

0 commit comments

Comments
 (0)