We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34cf446 commit 223cd55Copy full SHA for 223cd55
.github/workflows/tests.yml
@@ -0,0 +1,34 @@
1
+name: Python tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - '**'
7
+ pull_request:
8
9
10
11
+jobs:
12
+ build:
13
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - uses: actions/checkout@v5
18
+ with:
19
+ submodules: true
20
21
+ - name: Set up Python
22
+ uses: actions/setup-python@v5
23
24
+ python-version: '3.13'
25
26
+ - name: Install dependencies
27
+ run: |
28
+ python -m pip install --upgrade pip
29
+ pip install -r requirements.txt
30
31
+ - name: Run pytest
32
33
+ pip install pytest pytest-mock
34
+ pytest
0 commit comments