1 parent e5d2e36 commit 72df830Copy full SHA for 72df830
1 file changed
.github/workflows/tests.yml
@@ -0,0 +1,27 @@
1
+name: Run Tests
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ matrix:
10
+ python-version: ["3.10", "3.11", "3.12", "3.13"]
11
12
+ steps:
13
+ - uses: actions/checkout@v3
14
15
+ - name: Set up Python ${{ matrix.python-version }}
16
+ uses: actions/setup-python@v4
17
+ with:
18
+ python-version: ${{ matrix.python-version }}
19
20
+ - name: Install dependencies
21
+ run: |
22
+ python -m pip install --upgrade pip
23
+ pip install -r requirements.txt
24
+ pip install pytest pytest-mock
25
26
+ - name: Run tests
27
+ run: pytest Tests/ -v
0 commit comments