All checks were successful
Master branch: build & lint / build (push) Successful in 1m0s
Adds an action to perform some linting actions on ansible and the yaml files, both on push onto master and on pull requests Reviewed-on: #1
9 lines
No EOL
197 B
Makefile
9 lines
No EOL
197 B
Makefile
venv:
|
|
if ! [ -d venv ]; then python3 -m venv venv; fi;
|
|
./venv/bin/pip install -r requirements.txt
|
|
|
|
install:
|
|
ansible-galaxy install -r requirements.yml
|
|
|
|
action:
|
|
act -W .gitea/workflows/on_pr.yml
|