We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 020dfed + f89d2ad commit b236ac7Copy full SHA for b236ac7
.github/workflows/test.yaml
@@ -0,0 +1,33 @@
1
+---
2
+name: Tests
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
+ push:
8
9
10
+
11
+jobs:
12
+ test:
13
+ runs-on: ubuntu-22.04
14
15
+ steps:
16
+ - name: Check out code
17
+ uses: actions/checkout@v4
18
19
+ - name: Set up Python
20
+ uses: actions/setup-python@v5
21
+ with:
22
+ python-version: '3.13'
23
+ cache: 'pip'
24
25
+ - name: Install dependencies
26
+ run: |
27
+ python -m pip install --upgrade pip
28
+ pip install -r requirements.txt
29
+ pip install -e .
30
31
+ - name: Run tests
32
33
+ python -m pytest tests/ -v
0 commit comments