We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d460d8 commit f630357Copy full SHA for f630357
1 file changed
.github/workflows/build-golang.yml
@@ -10,11 +10,11 @@ on:
10
jobs:
11
build-and-test-golang:
12
name: Build, Test
13
- runs-on: ${{ matrix.os[0] }}
+ runs-on: ${{ matrix.os }}
14
strategy:
15
fail-fast: false
16
matrix:
17
- os: [ ubuntu-latest, windows-latest, macos-10.15 ]
+ os: [ ubuntu-latest, windows-latest] # , 'macos-latest' ] disabled due to macos issues
18
steps:
19
- uses: actions/checkout@v2
20
- name: Download workflow artifact
@@ -50,7 +50,7 @@ jobs:
50
if: always()
51
uses: actions/upload-artifact@v2
52
with:
53
- name: Golang Unit Test Results (${{ matrix.os[0] }})
+ name: Golang Unit Test Results (${{ matrix.os }})
54
path: 'go/okapi/test_output*.xml'
55
56
publish-test-results-golang:
0 commit comments