Skip to content

feat: add Docker setup for frontend and compose configuration (#89) #125

feat: add Docker setup for frontend and compose configuration (#89)

feat: add Docker setup for frontend and compose configuration (#89) #125

Workflow file for this run

name: Lint Backend
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
lint-backend:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v5
with:
version: "latest"
enable-cache: true
- name: Run Ruff Format With Diff
run: uv run ruff format src --check --diff
working-directory: backend
- name: Run Ruff Lint
run: uv run ruff check src
working-directory: backend