File tree Expand file tree Collapse file tree 3 files changed +19
-2
lines changed Expand file tree Collapse file tree 3 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 26
26
- run : make dev
27
27
- run : make test
28
28
29
+ examples :
30
+ runs-on : ubuntu-latest
31
+ strategy :
32
+ matrix :
33
+ python : ['3.12']
34
+ steps :
35
+ - uses : actions/checkout@v4
36
+ - name : Set up Python ${{ matrix.python }}
37
+ uses : actions/setup-python@v5
38
+ with :
39
+ python-version : ${{ matrix.python }}
40
+ cache : pip
41
+ - run : make dev
42
+ - run : make exampletest
43
+
29
44
format :
30
45
runs-on : ubuntu-latest
31
46
strategy :
Original file line number Diff line number Diff line change @@ -23,7 +23,10 @@ typecheck:
23
23
$(PYTHON ) -m mypy src tests
24
24
25
25
unittest :
26
- $(PYTHON ) -m pytest
26
+ $(PYTHON ) -m pytest tests
27
+
28
+ exampletest :
29
+ $(PYTHON ) -m pytest examples
27
30
28
31
coverage : typecheck
29
32
coverage run -m unittest discover
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments