We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8295d0b commit 20ad271Copy full SHA for 20ad271
.github/workflows/main.yml
@@ -11,9 +11,22 @@ 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
+ mkdir -p ~/go/bin
19
+ curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
20
+ dep ensure
21
+ go install
22
+ dunner version
23
+ dunner do show
24
25
+ - name: Build Dunner and run tests on Mac
26
+ if: matrix.os == 'macOS-latest'
27
run: |
- go install github.com/golang/dep/cmd/dep
28
+ brew install dep
29
+ brew upgrade dep
30
dep ensure
31
go install
32
dunner version
0 commit comments