diff --git a/.github/workflows/molecule.yml b/.github/workflows/molecule.yml index 7529dd2c..0bfa8ffe 100644 --- a/.github/workflows/molecule.yml +++ b/.github/workflows/molecule.yml @@ -46,7 +46,6 @@ jobs: uses: actions/setup-python@v5 with: python-version-file: pyproject.toml - cache: 'poetry' - name: Install packages run: poetry install --no-interaction diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c514f584..c6e4eb9f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -25,6 +25,6 @@ repos: - '--profile=production' - repo: https://github.com/rhysd/actionlint - rev: v1.7.4 + rev: v1.7.6 hooks: - id: actionlint-docker diff --git a/Makefile b/Makefile index 033ffa19..1c05224c 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ all: lint test # Install Python first .PHONY: install install: - poetry install --no-root + poetry install --with=dev poetry run pre-commit install --install-hooks poetry run ansible-galaxy collection install -r requirements.yml @@ -16,7 +16,7 @@ clean: .PHONY: update update: - poetry update + poetry update --with=dev poetry run pre-commit autoupdate .PHONY: lint