We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3df9b7b commit 555f3bbCopy full SHA for 555f3bb
.github/workflows/ci.yml
@@ -36,8 +36,9 @@ jobs:
36
# install 7zip for decompressing test demos
37
sudo apt-get install -y p7zip-full
38
39
- # Install interface generator
40
- GO111MODULE=off go get github.com/vburenin/ifacemaker
+ # Install interface generator - go 1.11 doesn't allow specifying a version with go get or go install, so we need to manually git clone
+ git clone https://github.com/vburenin/ifacemaker /tmp/ifacemaker
41
+ pushd /tmp/ifacemaker && git checkout v1.1.0 && go install . && popd
42
43
# Fetch refs for linter
44
git config remote.origin.fetch +refs/heads/*:refs/remotes/origin/*
0 commit comments