File tree 1 file changed +9
-3
lines changed
1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 51
51
52
52
test_create :
53
53
name : Writer integration test - creation
54
- runs-on : ubuntu-latest
54
+ strategy :
55
+ matrix :
56
+ os : [ubuntu-latest, macos-latest]
57
+ runs-on : ${{ matrix.os }}
55
58
steps :
56
59
- name : Set up Go
57
60
uses : actions/setup-go@v1
67
70
uses : actions/upload-artifact@v3
68
71
with :
69
72
path : /tmp/writer_test.iso
70
- name : writer_test .iso
73
+ name : writer_test_${{ matrix.os }} .iso
71
74
- name : Upload coverage to Codecov
72
75
uses : codecov/codecov-action@v2
73
76
with :
76
79
test_verify :
77
80
name : Writer integration test - verification
78
81
runs-on : ubuntu-latest
82
+ strategy :
83
+ matrix :
84
+ os : [ubuntu-latest, macos-latest]
79
85
needs : test_create
80
86
steps :
81
87
- name : Set up Go
87
93
- name : Download a single artifact
88
94
uses : actions/download-artifact@v3
89
95
with :
90
- name : writer_test .iso
96
+ name : writer_test_${{ matrix.os }} .iso
91
97
- run : ls
92
98
- run : ls -la writer_test.iso
93
99
- name : Integration test - verify image
You can’t perform that action at this time.
0 commit comments