From a6330a9318f0d83dcc901ee4fd62137399fbdecb Mon Sep 17 00:00:00 2001 From: Jari Voutilainen Date: Thu, 20 Jun 2024 13:20:44 +0300 Subject: [PATCH] Add codecov action@v4 dependencies --- .github/workflows/test.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 79e21b93e..f3bda1517 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -547,7 +547,14 @@ jobs: - name: Run tests run: | pytest --ckan-ini=ckan/ckanext/ckanext-ytp_main/test.ini --cov=ckanext.ytp --disable-warnings ckan/ckanext/ckanext-ytp_main/ckanext/ytp/tests + + - name: install codecov requirements + run: | + apk add gpg gpg-agent + - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v4 with: flags: ckan + os: alpine + token: ${{ secrets.CODECOV_TOKEN }}