Skip to content

chore(deps): bump idna from 3.3 to 3.7 in /api #18

chore(deps): bump idna from 3.3 to 3.7 in /api

chore(deps): bump idna from 3.3 to 3.7 in /api #18

Workflow file for this run

name: pull_requests
on:
pull_request:
branches: main
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
architecture: x64
- name: Cache python modules
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-python-${{ matrix.python }}-${{ hashFiles('pyproject.toml') }}-docs
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[docs]"
- name: Build documentation
run: sphinx-build docs/source docs/build -a -v
- name: Documentation sanity check
run: test -e docs/build/index.html || exit
triage:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"