mirror of
https://github.com/go-task/task.git
synced 2026-08-29 01:58:56 +02:00
19 lines
304 B
YAML
19 lines
304 B
YAML
version: '3'
|
|
|
|
silent: true
|
|
|
|
tasks:
|
|
default:
|
|
cmds:
|
|
- task: shared
|
|
ignore_error: true
|
|
# Joins the finished execution, and must inherit its error.
|
|
- task: shared
|
|
- echo "should not be reached"
|
|
|
|
shared:
|
|
run: once
|
|
cmds:
|
|
- echo "shared ran"
|
|
- exit 1
|