Release v0.34.0 #1635
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: Run Documentation Validation | |
on: pull_request | |
env: | |
DEFAULT_PYTHON_VERSION: "3.10" | |
jobs: | |
test-templated-docs: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: .ansible/collections/ansible_collections/linode/cloud | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v4 | |
with: | |
path: .ansible/collections/ansible_collections/linode/cloud | |
- name: setup python 3 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: install dependencies | |
run: make deps | |
- name: make temp directory | |
run: mkdir tmp | |
- name: copy over old readme | |
run: cp README.md tmp/README.md | |
- name: generate new docs | |
run: DOCS_PATH=tmp/docs make gendocs | |
- name: compare docs | |
run: diff -r docs tmp/docs | |
- name: compare README | |
run: diff -r README.md tmp/README.md | |
- name: clean up | |
run: rm -rf tmp | |
test-injected-docs: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: .ansible/collections/ansible_collections/linode/cloud | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v4 | |
with: | |
path: .ansible/collections/ansible_collections/linode/cloud | |
- name: setup python 3 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.DEFAULT_PYTHON_VERSION }} | |
- name: install dependencies | |
run: make deps | |
- name: inject and validate new docs | |
run: make inject |