-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (25 loc) · 804 Bytes
/
Copy pathMakefile
File metadata and controls
33 lines (25 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
.PHONY: test lint format format-check typecheck
all: test lint format typecheck
test:
$(info ****************** running tests ******************)
uv run --package workflows-acp -- pytest tests/
lint-check:
$(info ****************** linting ******************)
uv run pre-commit run -a
uv run ruff check
lint:
$(info ****************** linting ******************)
uv run pre-commit run -a
uv run ruff check --fix
format:
$(info ****************** formatting ******************)
uv run ruff format
format-check:
$(info ****************** checking formatting ******************)
uv run ruff format --check
typecheck:
$(info ****************** type checking ******************)
uv run ty check src/workflows_acp/
build:
$(info ****************** building ******************)
uv build