Add Phase 2 development roadmap and task breakdown #39
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Knowledge System Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
fast-tests: | |
name: Fast Tests (No Claude API) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup system dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y jq | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.21' | |
- name: Setup knowledge system | |
run: ./setup.sh | |
- name: Install test framework | |
run: ./tests/setup_test_framework.sh | |
- name: Run fast test suite | |
run: ./tests/run_fast_tests.sh | |
- name: Build Go components | |
run: | | |
if [ -d "go" ]; then | |
cd go && make build | |
fi | |
- name: Run Go tests | |
run: | | |
if [ -d "go" ]; then | |
cd go && go test -short ./... | |
fi | |
mocked-tests: | |
name: Mocked Tests (Fake Claude API) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup system dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y jq | |
- name: Setup knowledge system | |
run: ./setup.sh | |
- name: Install test framework | |
run: ./tests/setup_test_framework.sh | |
- name: Run mocked analysis tests | |
run: ./tests/run_mocked_tests.sh | |
macos-compatibility: | |
name: macOS Compatibility Tests | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.21' | |
- name: Setup knowledge system | |
run: ./setup.sh | |
- name: Install test framework | |
run: ./tests/setup_test_framework.sh | |
- name: Run CI test suite | |
run: ./tests/run_ci_tests.sh | |
- name: Build Go components | |
run: | | |
if [ -d "go" ]; then | |
cd go && make build | |
fi | |
- name: Run Go tests | |
run: | | |
if [ -d "go" ]; then | |
cd go && go test -short ./... | |
fi | |
# Note: No real Claude API tests in CI | |
# Those run manually or in nightly builds with secrets |