Skip to content

feat: add originated supervisor ID to slack alert messages and fix tests #25

feat: add originated supervisor ID to slack alert messages and fix tests

feat: add originated supervisor ID to slack alert messages and fix tests #25

Workflow file for this run

name: Deploy Docs
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pdoc3
- name: Generate documentation
run: |
pdoc3 --html ./src/enrgdaq/ --output-dir docs/
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/enrgdaq
publish_branch: gh-pages