Skip to content

Commit

Permalink
build(make): add converge target
Browse files Browse the repository at this point in the history
  • Loading branch information
donhector committed Jan 17, 2022
1 parent 03cd878 commit 19a8560
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,14 @@ security:
$(call hr)
@pipenv check

## Run just the role
run:
## Converge the role
converge:
$(call hr)
@pipenv run molecule converge

.PHONY: all install lint test update clean security run
## Run the role on localhost
run:
$(call hr)
@ansible-playbook -v tests/test.yml -i tests/inventory

.PHONY: all install lint test update clean security converge run

0 comments on commit 19a8560

Please sign in to comment.