From 7adb3c076d72f7d691551033dac0a076ca243413 Mon Sep 17 00:00:00 2001 From: Oliver Geiselhardt-Herms Date: Sun, 21 Jul 2024 21:56:49 +0200 Subject: [PATCH] Fix CI by dumping codecov and upgrade go --- .github/workflows/tests.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0d5a26c5..1cad9650 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -4,7 +4,7 @@ jobs: test: strategy: matrix: - go-version: [1.20.x] + go-version: [1.22.x] platform: [ubuntu-latest] runs-on: ${{ matrix.platform }} steps: @@ -22,14 +22,5 @@ jobs: - name: Test run: make test-coverage - # Upload Coverage Report - - name: Upload coverage to Codecov - uses: codecov/codecov-action@v1 - with: - file: ./coverage.txt - flags: unittests - name: codecov-${{ matrix.platform }}-${{ matrix.go-version }} - fail_ci_if_error: true - - name: Build commands and examples run: make build