Skip to content
Closed
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
13 changes: 13 additions & 0 deletions workshop/12-test-and-iterate.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,18 @@ If the compiler reports an error, fix that first. Do not start a new test run un
> [!TIP]
> If you expect to make several small edits in a row, `gh aw compile --watch` can speed up the loop by recompiling after each save.

## If You Cannot Run the Terminal

If you are using GitHub Copilot Cloud Agent (CCA) or working from mobile, ask Copilot to compile for you:

```text
Please run `gh aw compile` and commit both the workflow `.md` file and the regenerated `.lock.yml` file.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot teach to use the /agentic-workflows skill

```

Then review the commit and confirm your workflow `.lock.yml` file changed before you trigger the next run.

For a guided browser-first approach, use [Side Quest: Evaluating and Iterating on Agent Output](side-quest-12-01-iterate-agent-output.md), which includes a Copilot agent workflow for this loop.

## Commit Both Workflow Files

After `gh aw compile` succeeds, commit both the source workflow and the regenerated lock file:
Expand Down Expand Up @@ -92,6 +104,7 @@ If you want a stricter review loop, score each run for accuracy, completeness, a
- [ ] I changed only one instruction or configuration detail before testing again
- [ ] I ran `gh aw compile` after the edit and before triggering the next run
- [ ] I committed both the workflow `.md` file and the regenerated `.lock.yml` file
- [ ] If I used a browser or Copilot agent path, I confirmed the latest commit updated the `.lock.yml` file
- [ ] I compared the new run with the previous run and decided what to change next

<!-- journey: all -->
Expand Down
Loading