From 918b12a23164659b0b5ebe3d5afcb64262335f6a Mon Sep 17 00:00:00 2001 From: Alexei Yuzhakov Date: Wed, 10 Apr 2024 22:45:04 +0100 Subject: [PATCH] TECH Repair code coverage reporting --- .github/workflows/test.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 432e7823..faf6f077 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,8 +4,10 @@ on: [push] jobs: test: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: docker-compose run tests - - run: bash <(curl -s https://codecov.io/bash) + - uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }}