We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15761cc commit c223a40Copy full SHA for c223a40
1 file changed
.github/workflows/ci_pipeline.yml
@@ -0,0 +1,26 @@
1
+name: Run Pytest
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - name: 📥 Checkout code
11
+ uses: actions/checkout@v3
12
13
+ - name: 🐍 Set up Python
14
+ uses: actions/setup-python@v4
15
+ with:
16
+ python-version: '3.10' # or whatever version you need
17
18
+ - name: 📦 Install dependencies
19
+ run: |
20
+ python -m pip install --upgrade pip
21
+ pip install -r requirements.txt
22
+ pip install pytest
23
24
+ - name: 🧪 Run Pytest
25
26
+ pytest
0 commit comments