Some Refactoring to make it Okta SCIM compliant #49
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: Docs Generation Tests | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
push: | |
branches: [main] | |
jobs: | |
docs-generate: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
run: | | |
python -m venv venv | |
. ./venv/bin/activate | |
pip install -r requirements-docs.txt | |
- name: Check documentation | |
run: | | |
. ./venv/bin/activate | |
mkdocs build --strict |