Skip to content

Commit 5259987

Browse files
author
daniel.eades
committed
fixup
1 parent ba7f973 commit 5259987

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/lint.yml

+7-6
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ concurrency:
1515
env:
1616
FORCE_COLOR: "1"
1717
UV_SYSTEM_PYTHON: "1" # make uv do global installs
18+
UV_FROZEN: "1" # make uv do frozen installs
1819

1920
jobs:
2021
# If you update any of these commands, don't forget to update the equivalent
@@ -32,9 +33,9 @@ jobs:
3233
version: latest
3334
enable-cache: false
3435
- name: Lint with Ruff
35-
run: uv run --frozen ruff check --output-format=github
36+
run: uv run ruff check --output-format=github
3637
- name: Format with Ruff
37-
run: uv run --frozen ruff format --diff
38+
run: uv run ruff format --diff
3839

3940
mypy:
4041
runs-on: ubuntu-latest
@@ -49,7 +50,7 @@ jobs:
4950
version: latest
5051
enable-cache: false
5152
- name: Type check with mypy
52-
run: uv run --frozen mypy
53+
run: uv run mypy
5354

5455
pyright:
5556
runs-on: ubuntu-latest
@@ -64,7 +65,7 @@ jobs:
6465
version: latest
6566
enable-cache: false
6667
- name: Type check with pyright
67-
run: uv run --frozen pyright
68+
run: uv run pyright
6869

6970
docs-lint:
7071
runs-on: ubuntu-latest
@@ -79,7 +80,7 @@ jobs:
7980
version: latest
8081
enable-cache: false
8182
- name: Lint documentation with sphinx-lint
82-
run: uv run --frozen make doclinter
83+
run: uv run make doclinter
8384

8485
twine:
8586
runs-on: ubuntu-latest
@@ -96,4 +97,4 @@ jobs:
9697
- name: Lint with twine
9798
run: |
9899
uv build
99-
uv run --frozen twine check dist/*
100+
uv run twine check dist/*

0 commit comments

Comments
 (0)