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 2626 - run : make dev
2727 - run : make test
2828
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+
2944 format :
3045 runs-on : ubuntu-latest
3146 strategy :
Original file line number Diff line number Diff line change @@ -23,7 +23,10 @@ typecheck:
2323 $(PYTHON ) -m mypy src tests
2424
2525unittest :
26- $(PYTHON ) -m pytest
26+ $(PYTHON ) -m pytest tests
27+
28+ exampletest :
29+ $(PYTHON ) -m pytest examples
2730
2831coverage : typecheck
2932 coverage run -m unittest discover
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments