We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8295d0b commit 87335a2Copy full SHA for 87335a2
.github/workflows/main.yml
@@ -11,9 +11,23 @@ jobs:
11
12
steps:
13
- uses: actions/checkout@v1
14
- - name: Build Dunner and run tests
+
15
+ - name: Build Dunner and run tests on linux
16
+ if: matrix.os == 'ubuntu-latest'
17
+ run: |
18
+ echo $GOBIN
19
+ echo $GOPATH
20
+ curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
21
+ dep ensure
22
+ go install
23
+ dunner version
24
+ dunner do show
25
26
+ - name: Build Dunner and run tests on Mac
27
+ if: matrix.os == 'macOS-latest'
28
run: |
- go install github.com/golang/dep/cmd/dep
29
+ brew install dep
30
+ brew upgrade dep
31
dep ensure
32
go install
33
dunner version
0 commit comments