Skip to content

Document installed admin password reset #3

Document installed admin password reset

Document installed admin password reset #3

Workflow file for this run

name: Test
on:
push:
branches:
- master
- main
pull_request:
jobs:
unittest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.11"
- "3.12"
- "3.13"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: python -m unittest discover -s tests -v