Skip to content
Closed
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
46 changes: 46 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: CI

on:
pull_request:
branches:
- main
push:
branches:
- main
- develop

permissions:
contents: read
actions: read
checks: write

jobs:
lint-and-test:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r backend/requirements.txt
pip install ruff mypy

- name: Run Ruff
run: ruff check .

- name: Run mypy
run: mypy fixops backend new_backend

- name: Run pytest
env:
PYTHONPATH: .
run: pytest -q
329 changes: 59 additions & 270 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,292 +1,81 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# FixOps ignore rules

# IDE and editors
# IDEs and editors
.idea/
.vscode/
*.swp

# Dependencies
# Python
__pycache__/
*.py[cod]
*.pyc
*.pyo
*.pyd
.env/
.venv/
venv/

# Node/Frontend
node_modules/
/node_modules
/.pnp
.pnp.js
.yarn/
.yarn/cache/
.yarn/install-state.gz
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions

# Testing
/coverage

# Next.js
/.next/
/out/
next-env.d.ts
*.tsbuildinfo

# Production builds
/build
.yarn/unplugged/
.yarn/build-state.yml
.next/
out/
dist/
dist

# Environment files (comprehensive coverage)

*token.json*
*credentials.json*
*.tsbuildinfo

# Logs and debug files
# Logs & coverage
coverage/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
dump.rdb

# System files
.DS_Store
*.pem

# Python
__pycache__/
*pyc*
venv/
.venv/

# Development tools
chainlit.md
.chainlit
.ipynb_checkpoints/
.ac

# Deployment
.vercel

# Data and databases
agenthub/agents/youtube/db
data/automation/
data/evidence/

# Archive files and large assets
**/*.zip
**/*.tar.gz
**/*.tar
**/*.tgz
# Build artefacts
build/
dist/
*.pack
*.deb
*.dylib

# Build caches
*.zip
*.tar
*.tar.gz
*.tgz
.cache/

# Mobile development
android-sdk/ frontend/node_modules/.cache/default-development/3.pack
frontend/node_modules/.cache/default-development/3.pack
frontend/node_modules/.cache/default-development/0.pack
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
*.env
*.env.*
-e
# Environment files
# Environment and secret files
*.env
*.env.*
*.token
*token.json*
*credentials.json*
.envrc
.env.local
.envrc.local
!*.env.example
!*/.env.example

# Data directories generated at runtime
data/automation/
data/evidence/
data/archive/
data/uploads/

# Misc
.DS_Store
.chainlit/
chainlit.md
.ipynb_checkpoints/
.vercel/
android-sdk/

# Databases
agenthub/agents/youtube/db
fixops_enterprise.db

Loading