puppet-r10k/Makefile
Ben Vincent b218b4ef4e
All checks were successful
Build / build (pull_request) Successful in 57s
feat: prepare for gitea actions
- add actions workflow
- add makefile with build/clean targets
- add .gitignore file
- update pre-commit hooks
2024-11-17 19:55:36 +11:00

10 lines
176 B
Makefile

# run pre-commit
build:
python3.11 -m venv venv
venv/bin/pip install pip --upgrade
venv/bin/pip install pre-commit
venv/bin/pre-commit run --all-files
clean:
rm -rf venv