ci(automation): pre-ci setup
This commit is contained in:
parent
15ad7a2fb7
commit
4e623fada6
11 changed files with 293 additions and 185 deletions
14
.justfile
Normal file
14
.justfile
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue