1
0
mirror of https://github.com/go-task/task.git synced 2024-12-12 10:45:49 +02:00
task/testdata/output_group_error_only/Taskfile.yml

18 lines
255 B
YAML

version: '3'
silent: true
output:
group:
error_only: true
tasks:
passing: echo 'passing-output'
failing:
cmds:
- task: passing
- echo 'passing-output-2'
- echo 'passing-output-3'
- echo 'failing-output' && exit 1