We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1a35fb commit bb9e122Copy full SHA for bb9e122
.github/workflows/test.yml
@@ -7,7 +7,7 @@ jobs:
7
test-matrix:
8
strategy:
9
matrix:
10
- operating-system: [ubuntu-latest, windows-latest, macOS-latest]
+ operating-system: [ubuntu-latest, macOS-latest]
11
12
runs-on: ${{ matrix.operating-system }}
13
@@ -51,6 +51,13 @@ jobs:
51
- name: Run unit tests
52
run: task test-unit
53
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
+
61
# - name: Send unit tests coverage to Codecov
62
# if: >
63
# matrix.operating-system == 'ubuntu-latest' &&
0 commit comments