Skip to content

Commit 09ea58f

Browse files
fix: resolve build failures and reorganize test runner
- Move test_runner.go to scripts/ to avoid main package conflict - Update CodeQL action from deprecated v2 to v3 - Fix CI workflow to use correct test runner path
1 parent 738318b commit 09ea58f

File tree

9 files changed

+22
-435
lines changed

9 files changed

+22
-435
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
continue-on-error: true
5656

5757
- name: 📊 Upload Security Scan Results
58-
uses: github/codeql-action/upload-sarif@v2
58+
uses: github/codeql-action/upload-sarif@v3
5959
if: always()
6060
with:
6161
sarif_file: gosec-results.sarif
@@ -193,7 +193,7 @@ jobs:
193193
- name: 🎯 Run Complete Test Suite
194194
run: |
195195
echo "🎯 Running Comprehensive Test Suite..."
196-
go run test_runner.go
196+
go run scripts/test_runner.go
197197
198198
# ==================================================
199199
# 🏗️ Build & Release Artifacts

ENHANCED_FEATURES.md

Lines changed: 0 additions & 173 deletions
This file was deleted.

demo.md

Lines changed: 0 additions & 99 deletions
This file was deleted.
File renamed without changes.

docs/README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Aura Documentation
2+
3+
This directory contains detailed documentation for the Aura AI coding assistant.
4+
5+
## Available Documentation
6+
7+
- [CI/CD Setup](./CI_CD_SETUP.md) - Complete guide for setting up continuous integration and deployment
8+
- [Testing Guide](./TESTING.md) - Comprehensive testing documentation including unit, integration, and E2E tests
9+
- [Test Status](./TEST_STATUS.md) - Current test coverage and status report
10+
11+
## Quick Links
12+
13+
- [Main README](../README.md) - Project overview and quick start guide
14+
- [Contributing Guide](../CONTRIBUTING.md) - How to contribute to the project
15+
16+
## Additional Resources
17+
18+
For the latest updates and discussions:
19+
- [GitHub Issues](https://github.com/yourusername/aura/issues)
20+
- [GitHub Discussions](https://github.com/yourusername/aura/discussions)
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)