Add support for ssh_key_unlock #222
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: CI | |
on: | |
pull_request: | |
branches: [devel] | |
push: | |
branches: [devel] | |
jobs: | |
pull_request: | |
runs-on: ubuntu-20.04 | |
name: pull_request | |
env: | |
DOCKER_API_VERSION: "1.41" | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: "3.8" | |
- name: Install Dependencies | |
run: | | |
pip install -r molecule/requirements.txt | |
- name: Install Collections | |
run: | | |
ansible-galaxy collection install -r molecule/requirements.yml | |
ansible-galaxy collection install community.docker | |
- name: Run Molecule | |
env: | |
MOLECULE_VERBOSITY: 3 | |
PY_COLORS: '1' | |
ANSIBLE_FORCE_COLOR: '1' | |
run: | | |
make kustomize | |
KUSTOMIZE_PATH=$(readlink -f bin/kustomize) molecule test -s kind |