feat(benefit): ui to reflect 2026 changes #3214
Workflow file for this run
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: (BF) Python coding style | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| paths: | |
| - '.github/workflows/bf-py-coding-style.yml' | |
| - 'backend/benefit/**' | |
| - 'backend/shared/**' | |
| workflow_dispatch: | |
| env: | |
| DEBUG: 1 | |
| jobs: | |
| pre-commit: | |
| name: Run pre-commit hooks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Python 3.12 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| - name: Run pre-commit (benefit) | |
| uses: pre-commit/action@v3.0.1 | |
| with: | |
| extra_args: --files backend/benefit/** | |
| - name: Run pre-commit (shared) | |
| uses: pre-commit/action@v3.0.1 | |
| with: | |
| extra_args: --files backend/shared/** |