forked from ansible-lockdown/RHEL9-CIS
12 lines
172 B
Makefile
12 lines
172 B
Makefile
|
|
# TESTS
|
||
|
|
|
||
|
|
all: yamllint
|
||
|
|
|
||
|
|
yamllint:
|
||
|
|
git ls-files "*.yml"|xargs yamllint
|
||
|
|
|
||
|
|
requirements:
|
||
|
|
@echo 'Python dependencies:'
|
||
|
|
@cat requirements.txt
|
||
|
|
pip install -r requirements.txt
|