fix: unset CLI argument wrongly overwrite config file settings with default value #384
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: Test Build Docs | |
on: | |
pull_request: | |
jobs: | |
build-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install flit | |
flit install -s | |
- name: Build the docs | |
run: | | |
cd docs | |
pushd en && make html && popd | |
- name: markdown-link-check | |
uses: gaurav-nelson/github-action-markdown-link-check@1.0.15 |