Feature Description
Support GitHub Action-like matrix for a task, we can declare like an array and cargo-make can re-run the same commands/script with different matrix value. Auto-fail when one of the commands/scripts has failed
Describe The Solution You'd Like
[tasks.mock]
matrix = { target = ["a", "b", "c"]}
script = '''
echo ${matrix.target}
'''
Code Sample