Improve install role #42
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: # yamllint disable-line rule:truthy | |
- push | |
- pull_request | |
- workflow_dispatch | |
defaults: | |
run: | |
working-directory: ansible-lemonldapng | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the codebase. | |
uses: actions/checkout@v2 | |
with: | |
path: ansible-lemonldapng | |
- name: Set up Python 3. | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: Install test dependencies. | |
run: pip3 install yamllint | |
- name: Lint code. | |
run: | | |
yamllint . | |
molecule: | |
name: Molecule | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the codebase. | |
uses: actions/checkout@v2 | |
with: | |
path: ansible-lemonldapng | |
- name: Set up Python 3. | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: Install test dependencies. | |
run: pip3 install ansible ansible-core==2.16.8 molecule docker molecule-plugins | |
- name: Build the collection | |
run: | | |
collection_file=$( basename $(ansible-galaxy collection build -f | awk -F" " '{print $NF}')) | |
echo "COLLECTION_FILE=$collection_file" >> $GITHUB_ENV | |
- name: Install the collection | |
run: ansible-galaxy collection install $COLLECTION_FILE | |
- name: Run Molecule tests. | |
run: molecule test --all | |
env: | |
PY_COLORS: '1' | |
ANSIBLE_FORCE_COLOR: '1' | |
MOLECULE_DISTRO: ${{ matrix.distro }} |