Skip to content

Generate users.yaml from config wizard instead of ALLOWED_USER_IDS #428

Generate users.yaml from config wizard instead of ALLOWED_USER_IDS

Generate users.yaml from config wizard instead of ALLOWED_USER_IDS #428

Workflow file for this run

# Lint and test on every push to main and on pull requests.
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
cache: pip
- name: Install dependencies
run: pip install -e '.[dev,totp]'
- name: Lint and format check
run: make BIN= check
- name: Run tests
run: make BIN= test