Skip to content

Restructure deep_research to spawn workers directly #66

Restructure deep_research to spawn workers directly

Restructure deep_research to spawn workers directly #66

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
check-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Configure git
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "actions@github.com"
- name: Install shellcheck
run: |
sudo apt-get update
sudo apt-get install -y shellcheck
- name: Make scripts executable
run: |
chmod +x core/skills/thoughts-management/scripts/*
chmod +x test/*.sh
- name: Run CI validation
run: make ci