Skip to content

Commit bb9e122

Browse files
committed
add ci step to upload artifacts
1 parent e1a35fb commit bb9e122

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/test.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
test-matrix:
88
strategy:
99
matrix:
10-
operating-system: [ubuntu-latest, windows-latest, macOS-latest]
10+
operating-system: [ubuntu-latest, macOS-latest]
1111

1212
runs-on: ${{ matrix.operating-system }}
1313

@@ -51,6 +51,13 @@ jobs:
5151
- name: Run unit tests
5252
run: task test-unit
5353

54+
- name: Upload artifacts
55+
uses: actions/upload-artifact@v2
56+
with:
57+
name: arduino-create-agent-${{ matrix.operating-system }}
58+
path: arduino-create-agent
59+
if-no-files-found: error
60+
5461
# - name: Send unit tests coverage to Codecov
5562
# if: >
5663
# matrix.operating-system == 'ubuntu-latest' &&

0 commit comments

Comments
 (0)