experimental: new roles for APEX und ORDS #176
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: Ansible Doctor | |
on: | |
pull_request: | |
branches: | |
- master | |
- development | |
push: | |
branches: | |
- 'pr*' | |
jobs: | |
ansible-doctor: | |
runs-on: ubuntu-latest | |
steps: | |
- name: git clone | |
uses: actions/checkout@v3 | |
- name: Python 3.11 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11 | |
- name: Install ansible-doctor | |
run: | | |
python -m pip install ansible-doctor==4.0.1 ansible-core==2.16.2 | |
- name: ansible-doctor test | |
run: | | |
ansible-doctor --force --no-role-detection --recursive roles | |
- name: git diff of ansible-doctor | |
run: git diff --exit-code |