ansible-oracle 4.0.0: ansible-doctor + refactoring all variable defaults #12
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==2.0.4 | |
- name: ansible-doctor test | |
run: | | |
ansible-doctor -f -r roles | |
- name: git diff of ansible-doctor | |
run: git diff --exit-code |