We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9615d43 commit 5fa28efCopy full SHA for 5fa28ef
2 files changed
.github/workflows/ci.yaml
@@ -40,7 +40,9 @@ jobs:
40
run: make lint
41
- name: Format
42
run: make format
43
- - name: Check generated
44
- run: UV_RESOLUTION=${{ matrix.resolution }} make checkgenerate
+ # When running with matrix.resolution == lowest, we expect uv.lock to change, but we don't want that file checked in.
+ - if: matrix.resolution == 'highest'
45
+ name: Check generated
46
+ run: make checkgenerate
47
env:
48
BUF_TOKEN: ${{ secrets.BUF_TOKEN }}
Makefile
@@ -70,7 +70,7 @@ lint: install $(BIN)/buf ## Lint code
70
uv run -- ruff format --check --diff protovalidate test
71
uv run -- mypy protovalidate
72
uv run -- ruff check protovalidate test
73
- uv sync --locked
+ uv lock --check
74
75
.PHONY: install
76
install: ## Install dependencies
0 commit comments