ci(automation): pre-ci setup

This commit is contained in:
js0ny 2026-01-22 07:50:30 +00:00
parent 15ad7a2fb7
commit 4e623fada6
11 changed files with 293 additions and 185 deletions

14
.justfile Normal file
View file

@ -0,0 +1,14 @@
format:
cd ./drone-black-box && go fmt
fd --extension java --exec google-java-format --replace --aosp {}
static-analysis:
cd ./drone-black-box && go vet ./...
test:
cd ./drone-black-box && go test -v ./... -coverprofile=coverage.out
cd ./drone-black-box && go tool cover -html=coverage.out -o coverage.html
rm ./drone-black-box/coverage.out
# Java
cd ./ilp-rest-service/ && ./gradlew check