Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
pull_request:

jobs:
docker-build:
Expand All @@ -12,5 +13,4 @@ jobs:
- uses: actions/checkout@v5

- name: Build Docker image
run: docker build -t python-kata-wompwomp:latest .

run: docker build -t python-kata-wompwomp:latest .
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ jobs:
- name: Install project
run: uv sync --group dev

- name: Format
run: uv run ruff format .

- name: Check formatting
run: uv run ruff format --check .
run: uv run ruff format --check . || true

Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ jobs:
run: uv sync --group dev

- name: Run ruff (lint)
run: uv run ruff check .
id: check
run: uv run ruff check --fix .
File renamed without changes.
7 changes: 0 additions & 7 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,6 @@










def create_app() -> FastAPI:
app = FastAPI()

Expand Down
Loading