Skip to content

refactor(ui): extract shared action-button icon constants (CashPilot-… #334

refactor(ui): extract shared action-button icon constants (CashPilot-…

refactor(ui): extract shared action-button icon constants (CashPilot-… #334

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest pytest-cov pytest-asyncio pyyaml tzdata docker
- name: Run tests
run: pytest tests/ -v --tb=short
- name: Run tests with coverage
run: pytest tests/ --cov=app --cov-report=term-missing --cov-report=xml --cov-fail-under=90
- name: Upload coverage reports
uses: codecov/codecov-action@v7
with:
file: ./coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
continue-on-error: true