2 parents fb3464e + dc5c672 commit 1a70277Copy full SHA for 1a70277
2 files changed
.github/workflow/workflow.yaml
@@ -0,0 +1,34 @@
1
+name: Run Pytest
2
+
3
+on:
4
+ push:
5
+ branches: ["main", "master"]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
13
+ strategy:
14
+ matrix:
15
+ python-version: ["3.9", "3.10", "3.11"]
16
17
+ steps:
18
+ - name: Checkout repository
19
+ uses: actions/checkout@v4
20
21
+ - name: Set up Python
22
+ uses: actions/setup-python@v4
23
+ with:
24
+ python-version: ${{ matrix.python-version }}
25
26
+ - name: Install dependencies
27
+ run: |
28
+ python -m pip install --upgrade pip
29
+ pip install -r requirements.txt
30
+ pip install pytest
31
32
+ - name: Run pytest
33
34
+ pytest -vsm santy
Jenkins_2026/multibranch/Jenkinsfile
@@ -66,3 +66,4 @@ pipeline {
66
}
67
68
69
0 commit comments