refactor(ui): extract shared action-button icon constants (CashPilot-… #334
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |