a2578d7ff1
Documentation: build and deploy / deploy (push) Waiting to run
langchain4j-github-bot.yml lint / langchain4j-github-bot.yml validation (push) Waiting to run
Java CI / compile_and_unit_test (17) (push) Waiting to run
Java CI / compile_and_unit_test (21) (push) Waiting to run
Java CI / integration_test (21) (push) Blocked by required conditions
Java CI / compliance (push) Waiting to run
Java CI / spotless (push) Waiting to run
snapshot_release / snapshot_release (push) Waiting to run
Split Package Detection / check-split-packages (push) Waiting to run
Java CI / compile_and_unit_test (25) (push) Waiting to run
16 lines
420 B
Makefile
16 lines
420 B
Makefile
.PHONY: build lint format # always run
|
|
|
|
build:
|
|
mvn --version
|
|
mvn -U -T12C clean package
|
|
|
|
# Analyze code for errors, potential issues, and coding standard violations.
|
|
# Reports problems but does not modify the code.
|
|
lint:
|
|
mvn -T12C -Pspotless spotless:check
|
|
|
|
# Automatically format the code to conform to a style guide.
|
|
# Modifies the code to ensure consistent formatting.
|
|
format:
|
|
mvn -T12C -Pspotless spotless:apply
|