We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 534743f commit db61e60Copy full SHA for db61e60
1 file changed
.github/workflows/tests.yml
@@ -0,0 +1,29 @@
1
+name: Tests
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: ${{ matrix.os }}
12
+ strategy:
13
+ matrix:
14
+ os: [ubuntu-latest, windows-latest]
15
+ python-version: ["3.10", "3.14"]
16
17
+ steps:
18
+ - uses: actions/checkout@v4
19
20
+ - name: Set up Python ${{ matrix.python-version }}
21
+ uses: actions/setup-python@v5
22
+ with:
23
+ python-version: ${{ matrix.python-version }}
24
25
+ - name: Install package
26
+ run: pip install .
27
28
+ - name: Run unit tests
29
+ run: python -m unittest discover -v tests/
0 commit comments