forked from drt-hub/drt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
40 lines (31 loc) · 963 Bytes
/
Copy pathMakefile
File metadata and controls
40 lines (31 loc) · 963 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
34
35
36
37
38
39
40
.PHONY: install dev lint fmt test clean topics sync-labels
install:
uv pip install -e .
dev:
uv pip install -e ".[dev,bigquery]"
lint:
ruff check drt tests
mypy drt
fmt:
ruff format drt tests
ruff check --fix drt tests
test:
pytest
clean:
rm -rf dist build .eggs *.egg-info
find . -type d -name __pycache__ -exec rm -rf {} +
find . -type d -name .pytest_cache -exec rm -rf {} +
# ── Repo maintenance (maintainer only) ───────────────────────────────────────
topics: ## Sync repository topics to GitHub
gh repo edit drt-hub/drt \
--add-topic reverse-etl \
--add-topic dbt \
--add-topic bigquery \
--add-topic duckdb \
--add-topic python \
--add-topic cli \
--add-topic etl \
--add-topic data-engineering \
--add-topic postgres
sync-labels: ## Trigger label sync workflow on GitHub
gh workflow run sync-labels.yml --repo drt-hub/drt