Skip to content

auto_debug_signals: drop useless empty objects #1102

auto_debug_signals: drop useless empty objects

auto_debug_signals: drop useless empty objects #1102

Workflow file for this run

name: Build docs and trigger gh-pages
on:
push:
branches:
- "master"
pull_request:
branches:
- "master"
workflow_dispatch:
jobs:
push_gh-pages:
runs-on: ubuntu-latest
timeout-minutes: 5
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_MAIL: ${{github.event.pusher.email}}
GH_NAME: ${{github.event.pusher.name}}
DOCS_DIR: "docs"
BUILD_DIR: "build"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
cache-dependency-path: |
requirements.txt
requirements-dev.txt
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip3 install -r requirements-dev.txt
- name: Build documentation
run: ./ci/build_docs.sh
- name: Push documentation
# Deploy documentation only when on master
if: github.ref == 'refs/heads/master'
run: ./ci/push_gh_pages.sh