From adcf326f441b35087e50f7d3f9da24a59147bcad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Reyes=20el=20Programador=20Pobre?= Date: Mon, 4 Nov 2024 17:39:55 -0300 Subject: [PATCH] Update go.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andrés Reyes el Programador Pobre --- .github/workflows/go.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 9027e55..27eb252 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -29,23 +29,9 @@ jobs: install-go: false cache-key: ${{ matrix.go }} working-directory: ${{ matrix.dir }} - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: '1.22' - - - name: Build - run: go install - - name: Test run: | go test -v ./... -coverprofile coverage.out -coverpkg ./... go tool cover -func coverage.out -o coverage.out # Replaces coverage.out with the analysis of coverage.out - name: Update coverage report uses: ncruces/go-coverage-report@main -