File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -106,31 +106,6 @@ Open a real workflow file and find the three core building blocks — no termina
106106 - One `jobs:` entry — what is the job named?
107107 - One `steps` item — what command does it run?
108108
109- You don't need to understand every line. The goal is to see that a real workflow follows exactly the structure described above.
110-
111- - [ ] I found the `on:` trigger in a real workflow
112- - [ ] I identified a job name under `jobs:`
113- - [ ] I found at least one `steps` command
114-
115- # # Check your understanding
116-
117- Mark each statement as true or false, then reveal the answers :
118-
119- - [ ] Workflow files live in `.github/workflows/` as YAML
120- - [ ] The `on:` key defines when a workflow runs, not which commands to execute
121- - [ ] Each step in a job runs on its own separate virtual machine
122- - [ ] Agentic workflows replace scripted steps with a plain-language brief
123-
124- <details>
125- <summary>Reveal answers</summary>
126-
127- 1. True — workflow files live in `.github/workflows/` as YAML.
128- 2. True — `on:` is the trigger; commands go in `steps` entries.
129- 3. False — steps within a job share one runner; a new machine is provisioned per job.
130- 4. True — agentic workflows use a Markdown brief in place of scripted `steps`; the agent decides the how.
131-
132- </details>
133-
134109# # ✅ Checkpoint
135110
136111- [ ] I can identify `on`, `jobs`, and `steps` in a workflow file
You can’t perform that action at this time.
0 commit comments