Skip to content

Commit

Permalink
fix(exec): missing tasks key in module schema
Browse files Browse the repository at this point in the history
  • Loading branch information
edvald committed Jan 3, 2019
1 parent fab7e90 commit cc13f33
Show file tree
Hide file tree
Showing 5 changed files with 261 additions and 112 deletions.
35 changes: 35 additions & 0 deletions docs/reference/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,41 @@ module:
env:
{}

# A list of tasks that can be run in this module.
#
# Optional.
tasks:
# A task that can be run in this module.
#
# Optional.
- # The name of the task.
#
# Required.
name:

# A description of the task.
#
# Optional.
description:

# The names of any tasks that must be executed, and the names of any services that must be
# running, before this task is executed.
#
# Optional.
dependencies:
-

# Maximum duration (in seconds) of the task's execution.
#
# Optional.
timeout: null

# The command to run in the module build context.
#
# Optional.
command:
-

# A list of tests to run in the module.
#
# Optional.
Expand Down
Loading

0 comments on commit cc13f33

Please sign in to comment.