Implementing client.account.get_timeline() #478
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: | |
| branches: ["master"] | |
| paths: | |
| - ".github/workflows/deploy-docs.yml" | |
| - "**.py" | |
| - "**.rst" | |
| - "uv.lock" | |
| - "pyproject.toml" | |
| pull_request: | |
| paths: | |
| - ".github/workflows/check-docs.yml" | |
| - "**.py" | |
| - "**.rst" | |
| - "uv.lock" | |
| - "pyproject.toml" | |
| # Allows running this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| concurrency: | |
| group: "docs-${{ github.ref }}" | |
| cancel-in-progress: true | |
| jobs: | |
| docs: | |
| strategy: | |
| fail-fast: true | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Install dependencies | |
| run: make setup | |
| - name: Build doc | |
| run: make docs | |
| - name: Upload artifact | |
| if: github.ref == 'refs/heads/master' | |
| uses: actions/upload-pages-artifact@v4 | |
| with: | |
| path: "_build" | |
| deploy: | |
| needs: docs | |
| if: github.ref == 'refs/heads/master' | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup Pages | |
| uses: actions/configure-pages@v5 | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |