You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: complete type coverage and enhance CI PostgreSQL setup
- Add @SPEC annotations to all remaining private functions for 100% type coverage
- orchestrator/config.ex: get_htdag_config, default_config, validate_*
- workflow_supervisor.ex: ensure_registry_started, default_workflow_name, resolve_repo, repo_from_app
- orchestrator/repository.ex: maybe_filter_by_workflow, maybe_filter_by_date_range
- orchestrator.ex: build_task_graph, calculate_task_depths, convert_tasks_to_steps, generate_goal_id
- Fix unused variable warnings (prefix with _)
- Remove duplicate @SPEC annotations
- Enhance CI workflows with PostgreSQL setup:
- Create main CI workflow (ci.yml) with PostgreSQL 17 + pgmq
- Add pgmq extension verification to all workflows
- Ensure proper database setup and health checks
- Achieve zero compilation warnings and errors
- 100% type coverage across all modules
# Automatically run the setup steps when they are changed to allow for easy validation, and
4
-
# allow manual testing through the repository's "Actions" tab
5
3
on:
6
-
workflow_dispatch:
7
4
push:
8
-
paths:
9
-
- .github/workflows/copilot-setup-steps.yml
5
+
branches: [main, develop]
10
6
pull_request:
11
-
paths:
12
-
- .github/workflows/copilot-setup-steps.yml
7
+
branches: [main, develop]
8
+
workflow_dispatch:
13
9
14
10
jobs:
15
-
# The job MUST be called `copilot-setup-steps` or it will not be picked up by Copilot.
16
-
copilot-setup-steps:
11
+
test:
12
+
name: Test Suite
17
13
runs-on: ubuntu-latest
18
14
19
-
# Set the permissions to the lowest permissions possible needed for your steps.
20
-
# Copilot will be given its own token for its operations.
21
-
permissions:
22
-
# If you want to clone the repository as part of your setup steps, for example to install dependencies, you'll need the `contents: read` permission. If you don't clone the repository in your setup steps, Copilot will do this for you automatically after the steps complete.
23
-
contents: read
24
-
25
15
services:
26
16
postgres:
27
17
# Use official pgmq image with PostgreSQL 17 and pgmq pre-installed
@@ -39,8 +29,6 @@ jobs:
39
29
ports:
40
30
- 5432:5432
41
31
42
-
# You can define any steps you want, and they will run before the agent starts.
43
-
# If you do not check out your code, Copilot will do this for you.
0 commit comments