Rename lint command
This commit is contained in:
parent
a66a0e40c2
commit
7402035714
2 changed files with 2 additions and 2 deletions
|
@ -15,5 +15,5 @@ jobs:
|
||||||
key: cache-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
|
key: cache-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
|
||||||
paths:
|
paths:
|
||||||
- "/home/circleci/.local/share/virtualenvs"
|
- "/home/circleci/.local/share/virtualenvs"
|
||||||
- run: pipenv run test
|
- run: pipenv run lint
|
||||||
- run: pipenv run check
|
- run: pipenv run check
|
||||||
|
|
2
Pipfile
2
Pipfile
|
@ -15,4 +15,4 @@ python_version = "3.7"
|
||||||
[scripts]
|
[scripts]
|
||||||
deploy = "sudo ansible-playbook -i hosts dotfiles.yml"
|
deploy = "sudo ansible-playbook -i hosts dotfiles.yml"
|
||||||
check = "ansible-playbook -i hosts dotfiles.yml --syntax-check"
|
check = "ansible-playbook -i hosts dotfiles.yml --syntax-check"
|
||||||
test = "yamllint -sc yamllint.yml yamllint.yml dotfiles.yml tasks/ vars.yml"
|
lint = "yamllint -sc yamllint.yml yamllint.yml dotfiles.yml tasks/ vars.yml"
|
||||||
|
|
Loading…
Reference in a new issue