Commit e7c170a2 authored by Cédric OLIVIER's avatar Cédric OLIVIER
Browse files

Merge branch '13-go-install-should-be-suffixed-with-version' into 'master'

Resolve "go install should be suffixed with version"

Closes #13

See merge request to-be-continuous/golang!16
parents 0e6309e3 40065b4a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -122,7 +122,7 @@ stages:
  function install_go_junit_report() {
    cd "$(mktemp -d)"
    go mod init go-junit-report
    go install github.com/jstemmer/go-junit-report
    go install github.com/jstemmer/go-junit-report@latest
    cd -
  }

@@ -149,7 +149,7 @@ stages:
  function install_go_mod_outdated() {
    cd "$(mktemp -d)"
    go mod init go-mod-outdated
    go install github.com/psampaz/go-mod-outdated
    go install github.com/psampaz/go-mod-outdated@latest
    cd -
  }