Skip to content

fix(ui): unify deploy flows so the detail view validates + surfaces errors (CashPilot-cyc, part 1) #455

fix(ui): unify deploy flows so the detail view validates + surfaces errors (CashPilot-cyc, part 1)

fix(ui): unify deploy flows so the detail view validates + surfaces errors (CashPilot-cyc, part 1) #455

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install Ruff
run: pip install ruff
- name: Ruff check
run: ruff check .
- name: Ruff format check
run: ruff format --check .