From 2fc49a2e3e02d382cc547b3e5681ce741dfd35e5 Mon Sep 17 00:00:00 2001 From: Masaaki Goshima Date: Thu, 2 Sep 2021 18:38:33 +0900 Subject: [PATCH] Use action instead of bash uploader --- .github/workflows/go.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index a394e45..6671189 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -69,6 +69,7 @@ jobs: uses: actions/checkout@v2 - name: measure coverage run: make cover - - name: report coverage - run: | - bash <(curl -s https://codecov.io/bash) + - uses: codecov/codecov-action@v2 + with: + fail_ci_if_error: true + verbose: true