Skip to content

Added missing notes, added page on members, charter update #2

Added missing notes, added page on members, charter update

Added missing notes, added page on members, charter update #2

Workflow file for this run

name: Check Style and Build Docs
on:
push:
branches:
- "main"
pull_request:
# Allow manual runs through the web UI
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check_style:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install tox
- name: Check Style
run: |
tox -e codestyle
build_docs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install tox
- name: Build Docs
run: |
tox -e build_docs