From c5e5d3f01449e862763eae7fa1b4c583c311910b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mislav=20Marohni=C4=87?= Date: Mon, 13 Apr 2020 12:52:58 +0200 Subject: [PATCH] Remove obsolete GOPATH hack This was put in place for Go < 1.11, which we no longer support in CI. --- .github/workflows/ci.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 07d17c01..5b9e9240 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,12 +41,6 @@ jobs: # run: sudo apt-get install -y zsh fish - name: Run tests - shell: bash - run: | - export GOPATH="$HOME"/go - mkdir -p "$GOPATH"/src/github.com/github - ln -svf "$PWD" "$GOPATH"/src/github.com/github/hub - cd "$GOPATH"/src/github.com/github/hub - make test-all + run: make test-all env: CI: true -- GitLab