Skip to content

enhance the desgin for the dynamic request submit form. #89

enhance the desgin for the dynamic request submit form.

enhance the desgin for the dynamic request submit form. #89

Workflow file for this run

name: Banking Core Tests
on:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
env:
SECRET_KEY: ${{ secrets.SECRET_KEY }}
ADMIN_KEY: ${{ secrets.ADMIN_KEY }}
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.14
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements.txt
pip install pytest pytest-cov
- name: Run Tests
run: pytest --cov=app --cov-fail-under=90