Commit 84ff5078 authored by Pierre Smeyers's avatar Pierre Smeyers
Browse files

Merge branch '10-installing-executables-in-module-mode-with-go-get-is-deprecated' into 'master'

Resolve "Installing executables in module mode with go get is deprecated"

Closes #10

See merge request to-be-continuous/golang!15
parents d88ac115 91a5c14c
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 get github.com/jstemmer/go-junit-report
    go install github.com/jstemmer/go-junit-report
    cd -
  }

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