fix ldap certificates deployment + attributeOptions variable (#14) #30
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: Test ansible-role-ldaptoolbox-openldap | |
on: push | |
jobs: | |
test-deployment: | |
runs-on: ubuntu-latest | |
name: test ansible-role-ldaptoolbox-openldap syntax | |
steps: | |
- uses: actions/checkout@v2 | |
- name: get repository | |
run: | | |
git fetch --unshallow | |
git pull origin main | |
git config user.email "[email protected]" | |
git config user.name "GitHub Actions" | |
- name: test ansible syntax | |
run: | | |
sudo apt-get install -y python3-pip | |
sudo pip3 install ansible | |
ansible --version | |
printf '[defaults]\nroles_path=../' >ansible.cfg | |
ansible-playbook playbook/standalone.yml -i playbook/inventory --syntax-check --vault-password-file .vault_pass |