twscrape/Makefile
2023-05-06 15:48:03 +03:00

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