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
4 changes: 2 additions & 2 deletions .github/workflows/ruff-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
python-version: '3.12'

# 3. Determine changed Python files in api-server/ and state-manager/
# 3. Determine changed Python files
- name: Get changed Python files
id: changed-files
run: |
Expand All @@ -41,7 +41,7 @@ jobs:

# List all changed .py files in target directories
FILES=$(git diff --name-only --diff-filter=ACMRT $BASE_SHA $HEAD_SHA \
| grep -E '^(api-server|state-manager)/.*\.py$' || true)
| grep -E '\.py$' || true)

echo "files=$FILES" >> "$GITHUB_OUTPUT"

Expand Down
1 change: 1 addition & 0 deletions api-server/app/main.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
main file for exosphere apis
"""

import os
from beanie import init_beanie
from fastapi import FastAPI
Expand Down