Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 608 Bytes

File metadata and controls

16 lines (10 loc) · 608 Bytes

AGENTS.md

This repository provides a docker-compose.yml that lets you develop and run tests without installing Java locally.

To speed up local development, always use Docker Compose with the -v gradle-cache:/root/.gradle option to persist the Gradle cache across Docker runs.

Commands

  • docker compose run --rm package bash -c "bash ./scripts/lint.sh" - lint code
  • docker compose run --rm package ./gradlew test - run unit tests
  • docker compose run --rm package ./gradlew test integrationTest - run integration tests

Workflow

  • Lint code after changes
  • Run tests after changes