Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 534 Bytes

File metadata and controls

11 lines (7 loc) · 534 Bytes

AGENTS.md

Workflow

  • After every change, create a git commit and push it to the current branch.
  • Open pull requests with a title that follows Conventional Commits.

Testing

  • Never modify global state in tests (e.g. Application.put_env, Application.delete_env). All tests must be safe to run with async: true.
  • For running bash commands from Elixir, use MuonTrap instead of System. Prefer MuonTrap because it propagates process shutdowns to child processes. Reference: https://hexdocs.pm/muontrap/readme.html