migrate to core only

This commit is contained in:
Kian Jones
2025-09-08 15:14:56 -07:00
parent 1881fcc89d
commit bb8a8f335c
17 changed files with 325 additions and 257 deletions

View File

@@ -96,7 +96,7 @@ jobs:
- name: Install dependencies
run: uv sync --extra dev --extra postgres --extra external-tools
working-directory: ./apps/core
working-directory: .
# - name: Run ruff check with fixes
# run: uv run ruff check --fix .
@@ -106,7 +106,7 @@ jobs:
- name: Run isort, black, autoflake
run: uv run isort . --profile black && uv run black . && uv run autoflake --remove-all-unused-imports --remove-unused-variables --in-place --recursive --ignore-init-module-imports .
working-directory: ./apps/core
working-directory: .
- name: Check for changes