Skip to content
This repository was archived by the owner on Mar 8, 2026. It is now read-only.

waring: harden internal auth error handling #3

waring: harden internal auth error handling

waring: harden internal auth error handling #3

Workflow file for this run

name: security
on:
pull_request:
push:
jobs:
security-tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: backend
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install backend dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Run security regression tests
run: python -m pytest -m security