How many jobs will be executed in the following workflow? jobs : matrix - job : runs - on : ubuntu - latest strategy : matrix : animal : [ cat , dog , bear ] color : [ black , brown ] steps : - run : echo "Hello ${{ matrix.color }} ${{ matrix.animal }}"