statuses update

This commit is contained in:
sanek5g
2026-06-24 18:58:35 +03:00
parent fdddacf534
commit 0a9bfd0799
39 changed files with 2099 additions and 12 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
.PHONY: test test-watcher test-transcribe test-tagging test-analyse
test: test-watcher test-transcribe test-tagging test-analyse
@echo "all tests passed"
test-watcher:
cd watcher && go test ./... -count=1
test-transcribe:
cd workers/transcribe && go test ./... -count=1
test-tagging:
cd workers/tagging && go test ./... -count=1
test-analyse:
cd workers/analyse && go test ./... -count=1