Skip to content

Commit

Permalink
tools(i): Make one command do all the steps (#2772)
Browse files Browse the repository at this point in the history
## Relevant issue(s)
Resolves #2771

## Description
Runs all the developer make commands in one command.


## How has this been tested?
locally

Specify the platform(s) on which this was tested:
- WSL2
  • Loading branch information
shahzadlone authored Jun 25, 2024
1 parent f627448 commit a9f8dee
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -380,3 +380,11 @@ docs\:godoc:
.PHONY: toc
toc:
bash tools/scripts/md-toc/gh-md-toc --insert --no-backup --hide-footer --skip-header README.md

.PHONY: fix
fix:
@$(MAKE) deps
@$(MAKE) lint\:fix
@$(MAKE) tidy
@$(MAKE) mocks
@$(MAKE) docs

0 comments on commit a9f8dee

Please sign in to comment.