зеркало из
https://github.com/viginum-datalab/twscrape.git
synced 2025-10-29 13:06:13 +02:00
23 строки
252 B
Makefile
23 строки
252 B
Makefile
.PHONY: all build
|
|
|
|
all:
|
|
@echo "hi"
|
|
|
|
build:
|
|
python -m build
|
|
|
|
lint:
|
|
ruff check twscrape
|
|
|
|
lint-fix:
|
|
ruff check --fix twscrape
|
|
|
|
pylint:
|
|
pylint --errors-only twscrape
|
|
|
|
test:
|
|
pytest --cov=twscrape tests/
|
|
|
|
act:
|
|
act --container-architecture linux/amd64
|