From 2c6aba6897fd6139afca3e9219e4f06d7e9673a4 Mon Sep 17 00:00:00 2001 From: Marc Di Luzio Date: Mon, 6 Jul 2020 17:10:04 +0100 Subject: [PATCH] Remove Gopkg usage in github action --- .github/workflows/tests.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 11d1ab0..15742d5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -37,10 +37,6 @@ jobs: - name: Get go dependencies run: | go get -v -t -d ./... - if [ -f Gopkg.toml ]; then - curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh - dep ensure - fi - name: Build and Test run: make test