Update code to be aligned with ruff==0.3.4
(#354)
#141
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: Deploy protocol docs | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish: | |
name: 'Publish' | |
runs-on: ubuntu-latest | |
# Avoid running this workflow for forks: | |
if: "github.repository == 'data-apis/dataframe-api'" | |
steps: | |
- name: 'Checkout repository' | |
uses: actions/checkout@v3 | |
- name: 'Install Python' | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: 'Install dependencies' | |
run: pip install -r ./requirements.txt | |
- name: 'Build documentation' | |
run: | | |
# Turn warnings into errors and ensure .doctrees is not deployed: | |
mkdir site | |
sphinx-build -b html -WT --keep-going protocol/ site/latest -d doctrees | |
touch site/.nojekyll | |
- name: 'Deploy' | |
uses: peaceiris/actions-gh-pages@v3 | |
if: github.ref == 'refs/heads/main' | |
with: | |
personal_token: ${{ secrets.ACTIONS_DEPLOY_TOKEN }} | |
external_repository: data-apis/dataframe-protocol | |
publish_branch: main | |
publish_dir: ./site | |
user_name: 'github-actions[bot]' | |
user_email: 'github-actions[bot]@users.noreply.github.com' |