Spaces:
Running
Running
File size: 250 Bytes
f026a8e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | .PHONY: lint format test build docker all
lint:
pylint cole/ tests/
cd frontend && npm run lint
format:
black --check .
test:
pytest
build:
cd frontend && npm ci && npm run build
docker:
docker build -t cole .
all: format lint test build
|