File tree Expand file tree Collapse file tree 2 files changed +7
-31
lines changed Expand file tree Collapse file tree 2 files changed +7
-31
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 99jobs :
1010 unit-tests :
1111 runs-on : ubuntu-latest
12+ strategy :
13+ matrix :
14+ python-version : [ '3.13' ]
1215
1316 steps :
1417 - name : Checkout repository
@@ -17,17 +20,17 @@ jobs:
1720 - name : Set up Python
1821 uses : actions/setup-python@v5
1922 with :
20- python-version : " 3.10 "
23+ python-version : ${{ matrix.python-version }}
2124
2225 - name : Install uv
2326 run : |
2427 curl -LsSf https://astral.sh/uv/install.sh | sh
2528 echo "${HOME}/.local/bin" >> $GITHUB_PATH
2629
27- - name : Install openretina with dependencies
30+ - name : Install package with dependencies
2831 run : |
29- uv sync --extra dev
32+ uv sync
3033 uv pip install pytest
3134
3235 - name : Run Unit Tests
33- run : make test-unittests
36+ run : pytest tests/ -v
You can’t perform that action at this time.
0 commit comments