Skip to content

deps:(deps): bump pytest-benchmark from 4.0.0 to 5.1.0 #1077

deps:(deps): bump pytest-benchmark from 4.0.0 to 5.1.0

deps:(deps): bump pytest-benchmark from 4.0.0 to 5.1.0 #1077

Workflow file for this run

# creates the documentation on pushes it to the gh-pages branch
name: Documentation
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
token: ${{ secrets.PAT }}
- name: Install dependencies
shell: bash
run: |
python -m pip install --upgrade pip
pip install -e ".[docs,tutorials]"
- name: Build and Commit
uses: sphinx-notes/[email protected]
with:
documentation_path: docs
sphinx_version: "5.3.0"
- name: Push changes
if: ${{ github.event_name == 'push' }}
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.PAT }}
branch: gh-pages