From 923f51b8e3ba3fd49dd8b9e859e1c0304f7cdbd4 Mon Sep 17 00:00:00 2001 From: John Bartholomew Date: Mon, 20 Jan 2025 21:09:49 +0000 Subject: [PATCH] switch to go mod based goveralls in CI --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index efd9e4e..00dee04 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -78,15 +78,14 @@ jobs: # version: v1.30.0 - run: make all - name: Install goveralls - env: - GO111MODULE: off run: | export GOPATH=$GITHUB_WORKSPACE - go get github.com/mattn/goveralls + go install github.com/mattn/goveralls@v0.0.12 - name: Send coverage env: COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: ./bin/goveralls -coverprofile=coverage.out -service=github + run: | + ./bin/goveralls -coverprofile=coverage.out -service=github goreleaser: name: Goreleaser