Skip to content

Commit

Permalink
chore: add docs requirements to make dev (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
nmoutschen committed Jun 15, 2021
1 parent 83788fe commit f892dc0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@ CFN_LINT = cfn-lint-serverless
TFLINT = tflint-ruleset-aws-serverless
EXAMPLES = examples

dev:
dev: requirements-dev
$(MAKE) -C $(CFN_LINT) dev
$(MAKE) -C $(TFLINT) dev

dev-requirements:
pip install -r requirements-dev.txt

pr:
$(MAKE) -C $(CFN_LINT) pr
$(MAKE) -C $(TFLINT) pr
Expand All @@ -14,6 +17,9 @@ test:
$(MAKE) -C $(CFN_LINT) test
$(MAKE) -C $(TFLINT) test

docs-serve:
mkdocs serve

release-check:
grep "version = \"$$RELEASE_TAG_VERSION\"" cfn-lint-serverless/pyproject.toml
grep "Version: \"$$RELEASE_TAG_VERSION\"" tflint-ruleset-aws-serverless/main.go
Expand Down
2 changes: 2 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
mkdocs
mkdocs-material

0 comments on commit f892dc0

Please sign in to comment.