File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 20
20
- uses : astral-sh/setup-uv@v5
21
21
with :
22
22
cache-dependency-glob : " **/pyproject.toml"
23
- - run : just check-types
23
+ - run : just install check-types
24
24
25
25
lint :
26
26
runs-on : ubuntu-latest
30
30
- uses : astral-sh/setup-uv@v5
31
31
with :
32
32
cache-dependency-glob : " **/pyproject.toml"
33
- - run : just lint
33
+ - run : just install lint
34
34
35
35
test :
36
36
runs-on : ubuntu-latest
48
48
with :
49
49
cache-dependency-glob : " **/pyproject.toml"
50
50
- run : uv python install ${{ matrix.python-version }}
51
- - run : just test -vv
51
+ - run : just install test -vv
52
52
53
53
test-integration :
54
54
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 1
- default : lint check-types test test-integration
1
+ default : install lint check-types test test-integration
2
+
3
+ install :
4
+ uv lock --upgrade
5
+ uv sync --all-extras --all-packages --frozen
2
6
3
7
lint :
4
8
uv run ruff check .
You can’t perform that action at this time.
0 commit comments