chore: consolidate GitHub workflows and remove duplicate lock file

- Move tools workflows to root .github/workflows/ with updated paths
- Remove duplicate uv.lock from tools package
- Centralize all CI/CD workflows in monorepo root
This commit is contained in:
Greyson Lalonde
2025-09-12 22:43:28 -04:00
parent 41d9ee6d15
commit 5ee1b35889
3 changed files with 4 additions and 7804 deletions

42
.github/workflows/tools-tests.yml vendored Normal file
View File

@@ -0,0 +1,42 @@
name: Tools Tests
on: [pull_request]
permissions:
contents: write
env:
OPENAI_API_KEY: fake-openai-key
BRAVE_API_KEY: fake-brave-key
SNOWFLAKE_USER: fake-snowflake-user
SNOWFLAKE_PASSWORD: fake-snowflake-password
SNOWFLAKE_ACCOUNT: fake-snowflake-account
SNOWFLAKE_WAREHOUSE: fake-snowflake-warehouse
SNOWFLAKE_DATABASE: fake-snowflake-database
SNOWFLAKE_SCHEMA: fake-snowflake-schema
EMBEDCHAIN_DB_URI: sqlite:///test.db
jobs:
tests:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install the project
run: uv sync --dev --all-extras
- name: Run tests
run: uv run pytest packages/tools/tests -vv