Skip to content

Add Elyan Labs ecosystem links #16

Add Elyan Labs ecosystem links

Add Elyan Labs ecosystem links #16

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run basic checks
run: |
python -m py_compile *.py || echo "No Python files to compile"
echo "✅ Basic CI checks passed"