[enhancement][mvs_raw]Implement_max_rc_mvs_raw #523
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: AC Module Doc | |
on: | |
pull_request: | |
paths: | |
- 'plugins/modules/*' | |
branches: | |
- dev | |
- staging* | |
jobs: | |
module-doc: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Set up venv | |
run: | | |
python -m pip install --upgrade pip | |
pip install virtualenv | |
mkdir venv | |
virtualenv venv/venv-2.16 | |
- name: Install dependencies | |
run: | | |
source venv/venv-2.16/bin/activate | |
pip install ansible | |
pip install ansible-doc-extractor | |
- name: Run ac-module-doc | |
run: | | |
source venv/venv-2.16/bin/activate | |
export ANSIBLE_LIBRARY=/home/runner/work/ibm_zos_core/ibm_zos_core/plugins/modules/ | |
./ac --ac-build | |
./ac --ac-module-doc |