File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed
Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change 77 runs-on : ubuntu-latest
88 strategy :
99 matrix :
10- branch :
11- - ${{ github.head_ref }}
12- - " goshujin"
10+ include :
11+ - ref : ${{ github.ref }}
12+ name : " head"
13+ - ref : " goshujin"
14+ name : " goshujin"
1315
1416 permissions :
1517 contents : read
1618
1719 steps :
1820 - uses : actions/checkout@v4
1921 with :
20- ref : ${{ matrix.branch }}
22+ ref : ${{ matrix.ref }}
2123
2224 - name : " Install Node"
2325 uses : actions/setup-node@v4
3436 - name : " Upload Coverage"
3537 uses : actions/upload-artifact@v4
3638 with :
37- name : coverage-${{ matrix.branch }}
39+ name : coverage-${{ matrix.name }}
3840 path : coverage
3941
4042 report-coverage :
4648 - name : " Download HEAD coverage artifacts"
4749 uses : actions/download-artifact@v4
4850 with :
49- name : coverage-${{ github.head_ref }}
51+ name : coverage-head
5052 path : coverage
5153
5254 - name : " Download goshujin coverage artifacts"
You can’t perform that action at this time.
0 commit comments