I would like to specify a strategy matrix dynamically within the workflow. So, instead of:
strategy:
matrix:
foo: [bar, baz]
I want to first call some script which will compute and return an array such as [bar, baz] to me, and then I want to use that as the strategy matrix.
Is this possible?

