Skip to content

Format welcome message for moderators with clickable link for https link #297

Format welcome message for moderators with clickable link for https link

Format welcome message for moderators with clickable link for https link #297

Workflow file for this run

---
name: Documentation
on:
push:
branches:
- production
- main
pull_request:
branches:
- production
- main
jobs:
tests:
name: ${{ matrix.python }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.11
- uses: actions/cache@v1
with:
path: ~/.cache/pip
key: pip|${{ hashFiles('web/requirements.doc.txt') }}
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install -r web/requirements.doc.txt
- name: Run unit tests
run: sphinx-build documentation build/sphinx/html