diff options
| author | Ülgen Sarıkavak <ulgens@users.noreply.github.com> | 2026-05-08 17:08:35 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-08 16:08:35 +0200 |
| commit | 2c88423e6b63dc3bfce1bf2062d1a58a9525b106 (patch) | |
| tree | 8f98c993726d96566dd16d4b51869bdb2fa5d759 | |
| parent | 8cec44a35d8f38284f2ea52f2f338a7154d86afb (diff) | |
Enable codecov (#2325)
| -rw-r--r-- | .github/workflows/tests.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b4664b5f..f54fc480 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -62,6 +62,13 @@ jobs: echo '"trac_db_host": "localhost", ' >> conf/secrets.json echo '"trac_db_password": "secret", ' >> conf/secrets.json echo '"secret_key": "a"}' >> conf/secrets.json + - name: Run tests run: | make ci + coverage xml + + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v5 + with: + token: ${{ secrets.CODECOV_TOKEN }} |
