mirror of
https://github.com/ansible-collections/hetzner.hcloud
synced 2024-11-10 06:34:13 +00:00
8a6157e8b2
* chore: ignore venv directories * chore: ignore integration test generated inventory * feat: vendor hcloud package * import https://github.com/hetznercloud/hcloud-python * use vendored hcloud in modules * update integration test requirements * make vendor script self contained * chore: add check-hcloud-vendor pre-commit hook * pin hcloud version to v.1.24.0 * move vendored __version__.py file to _version.py * update comment about galaxy-importer filename lint
9 lines
144 B
Makefile
9 lines
144 B
Makefile
SHELL := bash
|
|
.PHONY: vendor clean
|
|
|
|
vendor:
|
|
python3 scripts/vendor.py
|
|
|
|
clean:
|
|
git clean -xdf \
|
|
-e tests/integration/cloud-config-hcloud.ini
|