Skip to content

GitHub Actions CI/CD Recipes Practice Exam

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.

📝 50 questions · ⏱ 60 minutes · 🎯 Pass mark 70% · 🆓 Free, no signup

Exam details

  • 50 questions drawn from 120 cards
  • Countdown timer — auto-submits when time runs out
  • Pass mark 70% (real certification threshold)
  • Full review of wrong answers at the end
  • No signup required — save your score with a free account

Sample Questions

5 shown

What is GitHub Actions?

Show ▼

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/.

What file extension do GitHub Actions workflow files use?

Show ▼

.yaml or .yml, stored under .github/workflows/ in the repository.

What is a workflow in GitHub Actions?

Show ▼

An automated, configurable process defined by a YAML file that runs one or more jobs and is triggered by events.

What is a job in GitHub Actions?

Show ▼

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:.

What is a step in GitHub Actions?

Show ▼

An individual task within a job, either a shell command (run:) or an invocation of an action (uses:).

🎯 Take the GitHub Actions CI/CD Recipes Practice Exam