We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33c375b commit 569f9ecCopy full SHA for 569f9ec
.github/workflows/node.js.yml
@@ -23,6 +23,25 @@ jobs:
23
24
steps:
25
- 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
41
42
+ # Commands to run your backend tests
43
+ pytest tests # Adjust as necessary
44
45
- name: Use Node.js ${{ matrix.node-version }}
46
uses: actions/setup-node@v3
47
with:
0 commit comments