File tree Expand file tree Collapse file tree 3 files changed +11
-42
lines changed Expand file tree Collapse file tree 3 files changed +11
-42
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -22,12 +22,14 @@ jobs:
22
22
steps :
23
23
- name : Check out
24
24
uses : actions/checkout@v4
25
-
26
- - name : Set up the environment
27
- uses : ./.github/actions/setup-python-env
25
+ with :
26
+ fetch-depth : 0 # Needed for setuptools_scm to work correctly
27
+ - name : Install uv and set the python version
28
+ uses : astral-sh/setup-uv
28
29
with :
29
30
python-version : ${{ matrix.python-version }}
30
- extra-dependencies : --all-extras --dev
31
+ - name : Install the project
32
+ run : uv sync --all-extras --dev
31
33
32
34
- name : Run tests
33
35
run : uv run inv pytest --junit --no-pty --base
Original file line number Diff line number Diff line change @@ -23,12 +23,13 @@ jobs:
23
23
steps :
24
24
- name : Check out
25
25
uses : actions/checkout@v4
26
+ with :
27
+ fetch-depth : 0 # Needed for setuptools_scm to work correctly
26
28
27
- - name : Set up the environment
28
- uses : ./.github/actions/ setup-python-env
29
+ - name : Install uv and set the python version
30
+ uses : astral-sh/ setup-uv
29
31
with :
30
32
python-version : ${{ matrix.python-version }}
31
- extra-dependencies : --group validate
32
33
33
34
- name : Check typing
34
- run : uv run mypy
35
+ run : uv run mypy .
You can’t perform that action at this time.
0 commit comments