File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Unit Tests
2
+
3
+ on :
4
+ pull_request :
5
+
6
+ jobs :
7
+ tests :
8
+ runs-on : ubuntu-latest
9
+ strategy :
10
+ fail-fast : false
11
+ matrix :
12
+ python :
13
+ - " 3.10"
14
+ - " 3.11"
15
+ - " 3.12"
16
+ - " 3.13"
17
+ - " 3.14-dev"
18
+ steps :
19
+ - uses : actions/checkout@v4
20
+ - name : Set up Python
21
+ uses : actions/setup-python@v5
22
+ with :
23
+ python-version : ${{ matrix.python }}
24
+ - name : Unit tests
25
+ run : python -m unittest tests/*/*.py
Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ classifiers = [
17
17
" Programming Language :: Python :: 3.10" ,
18
18
" Programming Language :: Python :: 3.11" ,
19
19
" Programming Language :: Python :: 3.12" ,
20
+ " Programming Language :: Python :: 3.13" ,
21
+ " Programming Language :: Python :: 3.14" ,
20
22
" Typing :: Typed" ,
21
23
" Operating System :: OS Independent" ,
22
24
" Intended Audience :: Developers" ,
You can’t perform that action at this time.
0 commit comments