Test yourself under real exam conditions: 50 timed questions, 60 on the clock, pass mark 70%%. Instant score with a full review of everything you got wrong. Free — no account needed.
Exam details
A CI/CD and workflow automation platform built into GitHub that runs jobs in response to repository events using YAML-defined workflows stored in .github/workflows/.
.yaml or .yml, stored under .github/workflows/ in the repository.
An automated, configurable process defined by a YAML file that runs one or more jobs and is triggered by events.
A set of steps in a workflow that execute on the same runner; jobs run in parallel by default unless dependencies are declared with needs:.
An individual task within a job, either a shell command (run:) or an invocation of an action (uses:).