mirror of
https://github.com/ansible-lockdown/RHEL9-CIS.git
synced 2025-12-24 22:23:06 +00:00
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
|