We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7620e55 commit fc6ec5dCopy full SHA for fc6ec5d
.github/workflows/ci.yml
@@ -15,6 +15,14 @@ jobs:
15
with:
16
go-version: 1.20.4
17
18
+ - name: Get dependencies
19
+ run: |
20
+ go get -v -t -d ./...
21
+ if [ -f Gopkg.toml ]; then
22
+ curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
23
+ dep ensure
24
+ fi
25
+
26
- name: Build File Server
27
run: make build
28
0 commit comments