Revert "fix: Restrict upload of binary or unknown file types by defau… #892
Workflow file for this run
This file contains hidden or 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 | |
| on: [push, pull_request] | |
| jobs: | |
| docs: | |
| runs-on: ubuntu-latest | |
| name: docs | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Set up Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: 3.9 | |
| - run: python -m pip install -r docs/requirements.txt | |
| - name: Build docs | |
| run: | | |
| cd docs | |
| sphinx-build -W -b html -d build/doctrees . build/html |