matrix: MODULE: - db - bot - web - migration - monolith variables: - &image 'docker.io/maven:3.9-eclipse-temurin-21' steps: compile: image: *image commands: - mvn --batch-mode --no-transfer-progress -pl ${MODULE} -am compile test: image: *image commands: - mvn --batch-mode --no-transfer-progress -pl ${MODULE} -am test build: image: *image commands: - mvn --batch-mode --no-transfer-progress -Dmaven.test.skip -pl ${MODULE} -am install