feat: add ex_doc to generate documentation
All checks were successful
continuous-integration/drone/pr Build is passing

This commit is contained in:
2024-06-11 12:18:18 +00:00
parent c81e4fda67
commit 7fab746ea8
3 changed files with 10 additions and 0 deletions

View File

@@ -24,6 +24,10 @@ dialyzer: ## run dialyzer
.PHONY: static_code_analysis
static_code_analysis: check_format credo dialyzer ## run static code analysis
.PHONY: docs
docs: ## create documentation files
@mix docs
.PHONY: test
test: ## run tests
@mix test --cover --trace --slowest 10