All checks were successful
Master branch: build & lint / build (push) Successful in 1m8s
9 lines
198 B
Makefile
9 lines
198 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
|