Error AtlasError Documentation and Resolution

GitHub Actions step is missing run or uses

Every step must define a `uses` or `run` key.

GitHub Actions could not validate the workflow because a step exists without either running a command or calling an action.

Every step must define a `uses` or `run` keyconfiguration
Every step must define a `uses` or `run` key.
  • A step contains metadata like name or env but no run or uses key.
  • A workflow edit removed the action or command from a previously valid step.
  • Indentation or YAML structure made the run or uses key fall outside the step unexpectedly.
  1. Add either a run command or a uses reference to the failing step.
  2. Check YAML indentation so keys stay inside the intended step object.
  3. Remove placeholder steps that are not yet implemented rather than leaving them incomplete.
GitHub Docs: Workflow syntax for GitHub Actions
GitHub Actions every step must define uses or run | Error Atlas