1 parent 0804dc3 commit c86a252Copy full SHA for c86a252
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,25 @@
1
+name: Python Tests
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@v4
12
13
+ - name: Set up Python
14
+ uses: actions/setup-python@v5
15
+ with:
16
+ python-version: '3.11'
17
18
+ - name: Install dependencies
19
+ run: |
20
+ python -m pip install --upgrade pip
21
+ pip install -r requirements.txt
22
23
+ - name: Run tests with pytest
24
25
+ pytest
0 commit comments