Add additional check script
This commit is contained in:
parent
edb18db633
commit
b5d040e1ce
2 changed files with 3 additions and 2 deletions
|
@ -9,4 +9,4 @@ jobs:
|
||||||
- checkout
|
- checkout
|
||||||
- run: pipenv install
|
- run: pipenv install
|
||||||
- run: pipenv run test
|
- run: pipenv run test
|
||||||
- run: pipenv run deploy -C
|
- run: pipenv run check
|
||||||
|
|
3
Pipfile
3
Pipfile
|
@ -13,5 +13,6 @@ yamllint = "*"
|
||||||
python_version = "3.7"
|
python_version = "3.7"
|
||||||
|
|
||||||
[scripts]
|
[scripts]
|
||||||
deploy = "sudo ansible-playbook -i hosts dotfiles.yml -C"
|
deploy = "sudo ansible-playbook -i hosts dotfiles.yml"
|
||||||
|
check = "ansible-playbook -i hosts dotfiles.yml -C"
|
||||||
test = "yamllint -sc yamllint.yml yamllint.yml dotfiles.yml tasks/ vars.yml"
|
test = "yamllint -sc yamllint.yml yamllint.yml dotfiles.yml tasks/ vars.yml"
|
||||||
|
|
Loading…
Reference in a new issue