From 387627674f60eca510927080e734ab7a73aa992e Mon Sep 17 00:00:00 2001 From: Francisco Berchez Moreno Date: Tue, 21 Nov 2023 13:22:01 +0100 Subject: [PATCH 01/21] Codecov inclusion --- .github/workflows/{actions.yml => run_tests.yml} | 7 ++++++- README.md | 5 +++++ __init__.py | 0 dlordinal/models/tests/test_experiment_model.py | 4 +--- 4 files changed, 12 insertions(+), 4 deletions(-) rename .github/workflows/{actions.yml => run_tests.yml} (74%) delete mode 100644 __init__.py diff --git a/.github/workflows/actions.yml b/.github/workflows/run_tests.yml similarity index 74% rename from .github/workflows/actions.yml rename to .github/workflows/run_tests.yml index 0471835..3a6eeb6 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/run_tests.yml @@ -28,4 +28,9 @@ jobs: - name: Run tests run: | - pytest -v \ No newline at end of file + pytest -v + + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v3 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} diff --git a/README.md b/README.md index 0f2576d..5159835 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,8 @@ +|Codecov|_ + +.. |Codecov| image:: https://codecov.io/gh/ayrna/dlordinal/branch/master/graph/badge.svg?token=Pk8G9gg3y9 +.. _Codecov: https://codecov.io/gh/ayrna/dlordinal + # Deep learning utilities library ## Installation diff --git a/__init__.py b/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/dlordinal/models/tests/test_experiment_model.py b/dlordinal/models/tests/test_experiment_model.py index 8ed648f..3251657 100644 --- a/dlordinal/models/tests/test_experiment_model.py +++ b/dlordinal/models/tests/test_experiment_model.py @@ -7,9 +7,7 @@ from torch import nn from torch.nn import functional as F -from ..experiment_model import ( - ExperimentModel, -) # Reemplaza "your_module" con la ruta real de tu módulo +from ..experiment_model import ExperimentModel class MockExperimentModel(ExperimentModel): From d443ce2de1442fe32af87ca64b7ac5307b21deaf Mon Sep 17 00:00:00 2001 From: Francisco Berchez Moreno Date: Tue, 21 Nov 2023 13:31:40 +0100 Subject: [PATCH 02/21] Codecov correction --- .github/workflows/run_tests.yml | 5 +++++ README.md | 7 ++----- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 3a6eeb6..dc7980f 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -30,6 +30,11 @@ jobs: run: | pytest -v + codecov: + needs: tests + runs-on: ubuntu-latest + + steps: - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v3 env: diff --git a/README.md b/README.md index 5159835..adf95fb 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,11 @@ -|Codecov|_ - -.. |Codecov| image:: https://codecov.io/gh/ayrna/dlordinal/branch/master/graph/badge.svg?token=Pk8G9gg3y9 -.. _Codecov: https://codecov.io/gh/ayrna/dlordinal +[![!codecov](https://img.shields.io/codecov/c/github/ayrna/dlordinal?label=codecov&logo=codecov)](https://codecov.io/gh/ayrna/dlordinal) # Deep learning utilities library ## Installation You can install **dlordinal** directly from the GitHub repository using the following command in your terminal: - pip install git+https://github.com/ayrna/dlordinal.git@main + pip install git+https://github.com/ayrna/dlordinal.git@master Also, you can clone the repository and then install the library from the local repository folder: From 7dd502680aab4bff48db9a6605d3806cda5a8e70 Mon Sep 17 00:00:00 2001 From: Francisco Berchez Moreno Date: Tue, 21 Nov 2023 13:44:42 +0100 Subject: [PATCH 03/21] Codecov correction --- .codecov.yml | 26 ++++++++++++++++++++++++++ .coveragerc | 7 +++++++ 2 files changed, 33 insertions(+) create mode 100644 .codecov.yml create mode 100644 .coveragerc diff --git a/.codecov.yml b/.codecov.yml new file mode 100644 index 0000000..0acee90 --- /dev/null +++ b/.codecov.yml @@ -0,0 +1,26 @@ +# PR status check +coverage: + status: + project: + default: + target: auto + threshold: 1% + # If true PRs will always pass and reports are just for information + informational: true + patch: + default: + target: auto + threshold: 1% + # If true PRs will always pass and reports are just for information + informational: true + +# post coverage report as comment on PR +comment: false + +# enable codecov to report to GitHub status checks +github_checks: + annotations: false + +# paths to ignore +ignore: + - ".github/" \ No newline at end of file diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 0000000..2e76af3 --- /dev/null +++ b/.coveragerc @@ -0,0 +1,7 @@ +[report] +show_missing = True + +[run] +branch = True +source = dlordinal +parallel = True \ No newline at end of file From 5630fb245defec98ae29bcbaef6052a8187c44b4 Mon Sep 17 00:00:00 2001 From: Francisco Berchez Moreno Date: Wed, 22 Nov 2023 08:47:45 +0100 Subject: [PATCH 04/21] Codecov correction --- .github/workflows/run_tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index dc7980f..bfd3f1e 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -28,7 +28,7 @@ jobs: - name: Run tests run: | - pytest -v + python -m pytest --cov=dlordinal --cov-report=xml --timeout 1800 codecov: needs: tests @@ -38,4 +38,4 @@ jobs: - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v3 env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file From 69c35605139b20ebd2bf90079e52def4cd4030af Mon Sep 17 00:00:00 2001 From: Francisco Berchez Moreno Date: Wed, 22 Nov 2023 08:53:26 +0100 Subject: [PATCH 05/21] Codecov correction --- .github/workflows/run_tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index bfd3f1e..7bfb549 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -24,6 +24,8 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip + pip install codecov + pip install pytest-cov pip install . - name: Run tests From 2df0fbcbdfbc353dfaa236573bbd6ff386cdd34b Mon Sep 17 00:00:00 2001 From: Francisco Berchez Moreno Date: Wed, 22 Nov 2023 08:57:25 +0100 Subject: [PATCH 06/21] Codecov correction --- .github/workflows/run_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 7bfb549..77dbd21 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -30,7 +30,7 @@ jobs: - name: Run tests run: | - python -m pytest --cov=dlordinal --cov-report=xml --timeout 1800 + python -m pytest --cov=dlordinal --cov-report=xml codecov: needs: tests From 39fb0f88c7d153df58e5a8c4d6621c3a47c29d46 Mon Sep 17 00:00:00 2001 From: Francisco Berchez Moreno Date: Wed, 22 Nov 2023 09:57:18 +0100 Subject: [PATCH 07/21] Codecov correction #2 --- .github/workflows/run_tests.yml | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 77dbd21..b7fe711 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -10,7 +10,7 @@ on: jobs: tests: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout repository @@ -30,14 +30,24 @@ jobs: - name: Run tests run: | - python -m pytest --cov=dlordinal --cov-report=xml + pytest --cov=./ --cov-report=xml codecov: needs: tests - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v3 - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file + With: + file: ./coverage.xml + directory: ./coverage/reports/ + flags: unittests + env_vars: OS,PYTHON + name: codecov-umbrella + fail_ci_if_error: true + path_to_write_report: ./coverage/codecov_report.txt + verbose: true + + # env: + # CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file From 8144c9e479fea60d9b993bdeec007ecf9a7d7c58 Mon Sep 17 00:00:00 2001 From: Francisco Berchez Moreno Date: Wed, 22 Nov 2023 09:59:27 +0100 Subject: [PATCH 08/21] Codecov correction #3 --- .github/workflows/run_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index b7fe711..bb0d483 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -39,7 +39,7 @@ jobs: steps: - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v3 - With: + with: file: ./coverage.xml directory: ./coverage/reports/ flags: unittests From 83b88d23723f0fd16f06726f2ee953334f6e96f0 Mon Sep 17 00:00:00 2001 From: Francisco Berchez Moreno Date: Wed, 22 Nov 2023 10:04:12 +0100 Subject: [PATCH 09/21] Codecov correction #4 --- .github/workflows/run_tests.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index bb0d483..0836e69 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -40,14 +40,9 @@ jobs: - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v3 with: + token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage.xml - directory: ./coverage/reports/ - flags: unittests - env_vars: OS,PYTHON - name: codecov-umbrella - fail_ci_if_error: true - path_to_write_report: ./coverage/codecov_report.txt - verbose: true + # env: # CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file From 2038eec2307e2f50e0738454d2851f3f6b4577be Mon Sep 17 00:00:00 2001 From: Francisco Berchez Moreno Date: Wed, 22 Nov 2023 10:38:37 +0100 Subject: [PATCH 10/21] Codecov correction #5 --- .github/workflows/run_tests.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 0836e69..cf2a4a4 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -30,7 +30,7 @@ jobs: - name: Run tests run: | - pytest --cov=./ --cov-report=xml + pytest --cov=dlordinal --cov-report=xml codecov: needs: tests @@ -41,7 +41,6 @@ jobs: uses: codecov/codecov-action@v3 with: token: ${{ secrets.CODECOV_TOKEN }} - file: ./coverage.xml # env: From c73a39e48820f4cc4ba017dc74218d23c8482b7f Mon Sep 17 00:00:00 2001 From: Francisco Berchez Moreno Date: Wed, 22 Nov 2023 11:02:44 +0100 Subject: [PATCH 11/21] Codecov correction #6 --- .github/workflows/run_tests.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index cf2a4a4..4cd79a3 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -39,9 +39,5 @@ jobs: steps: - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v3 - with: - token: ${{ secrets.CODECOV_TOKEN }} - - - # env: - # CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file From 04f2f4c162499940c9ecd81bcc94913d2521b542 Mon Sep 17 00:00:00 2001 From: Francisco Berchez Moreno Date: Wed, 22 Nov 2023 11:10:53 +0100 Subject: [PATCH 12/21] Codecov correction #7 --- .github/workflows/run_tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 4cd79a3..b3f9047 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -33,6 +33,8 @@ jobs: pytest --cov=dlordinal --cov-report=xml codecov: + if: ${{ github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'codecov actions') }} + needs: tests runs-on: ubuntu-22.04 From 49928025d43b87e30f32d856582ab0a90f6b6ede Mon Sep 17 00:00:00 2001 From: Francisco Berchez Moreno Date: Wed, 22 Nov 2023 11:56:38 +0100 Subject: [PATCH 13/21] Codecov correction #8 --- .github/workflows/run_tests.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index b3f9047..feb4f81 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -33,13 +33,11 @@ jobs: pytest --cov=dlordinal --cov-report=xml codecov: - if: ${{ github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'codecov actions') }} - needs: tests runs-on: ubuntu-22.04 steps: - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v1 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file From aac437c9fb8c0861b3c851493bc66a4aff4f09b3 Mon Sep 17 00:00:00 2001 From: Francisco Berchez Moreno Date: Wed, 22 Nov 2023 12:08:41 +0100 Subject: [PATCH 14/21] Codecov correction #9 --- .github/workflows/run_tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index feb4f81..5c0a2fe 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -26,11 +26,12 @@ jobs: python -m pip install --upgrade pip pip install codecov pip install pytest-cov + pip install coverage pip install . - name: Run tests run: | - pytest --cov=dlordinal --cov-report=xml + pytest --cov=dlordinal --cov-report=xml:/github/workspace/coverage.xml codecov: needs: tests From 5987bab53a3afd59078ab583d2507893038f0446 Mon Sep 17 00:00:00 2001 From: Francisco Berchez Moreno Date: Wed, 22 Nov 2023 12:14:11 +0100 Subject: [PATCH 15/21] Codecov correction #10 --- .github/workflows/run_tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 5c0a2fe..72f67c3 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -31,7 +31,7 @@ jobs: - name: Run tests run: | - pytest --cov=dlordinal --cov-report=xml:/github/workspace/coverage.xml + pytest --cov=dlordinal --cov-report=xml:./coverage.xml codecov: needs: tests @@ -40,5 +40,7 @@ jobs: steps: - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v1 + with: + file: ./coverage.xml env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file From c50aee6925050e35cbd9199fdef4162be0595511 Mon Sep 17 00:00:00 2001 From: Francisco Berchez Moreno Date: Wed, 22 Nov 2023 12:18:36 +0100 Subject: [PATCH 16/21] Codecov correction #11 --- .github/workflows/run_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 72f67c3..a94c790 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -39,7 +39,7 @@ jobs: steps: - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v3 with: file: ./coverage.xml env: From 26dc8a5063db479f2e1af38f6e852aeb3506a6dc Mon Sep 17 00:00:00 2001 From: Francisco Berchez Moreno Date: Wed, 22 Nov 2023 12:22:15 +0100 Subject: [PATCH 17/21] Codecov correction #12 --- .github/workflows/run_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index a94c790..35854d7 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -31,7 +31,7 @@ jobs: - name: Run tests run: | - pytest --cov=dlordinal --cov-report=xml:./coverage.xml + pytest --cov=dlordinal --cov-report=xml:/home/runner/work/dlordinal/dlordinal/coverage.xml codecov: needs: tests From 7b83bd5cf020bdc46e605ab256345ee0755754fb Mon Sep 17 00:00:00 2001 From: Francisco Berchez Moreno Date: Wed, 22 Nov 2023 12:27:06 +0100 Subject: [PATCH 18/21] Codecov correction #13 --- .github/workflows/run_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 35854d7..8644b69 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -41,6 +41,6 @@ jobs: - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v3 with: - file: ./coverage.xml + file: /home/runner/work/dlordinal/dlordinal/coverage.xml env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file From 928398ab2b983e372ad7766edde03c87ff2f9b2c Mon Sep 17 00:00:00 2001 From: Francisco Berchez Moreno Date: Wed, 22 Nov 2023 12:39:42 +0100 Subject: [PATCH 19/21] Codecov correction #14 --- .github/workflows/run_tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 8644b69..a935f01 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -31,7 +31,7 @@ jobs: - name: Run tests run: | - pytest --cov=dlordinal --cov-report=xml:/home/runner/work/dlordinal/dlordinal/coverage.xml + pytest --cov=dlordinal --cov-report=xml codecov: needs: tests @@ -40,7 +40,7 @@ jobs: steps: - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v3 - with: - file: /home/runner/work/dlordinal/dlordinal/coverage.xml + # with: + # file: /home/runner/work/dlordinal/dlordinal/coverage.xml env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file From c8675c845b40ace75cb1a96f89b7d0eb5e825050 Mon Sep 17 00:00:00 2001 From: Francisco Berchez Moreno Date: Wed, 22 Nov 2023 12:49:55 +0100 Subject: [PATCH 20/21] Codecov correction #15 --- .github/workflows/run_tests.yml | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index a935f01..2fa54cc 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -26,21 +26,27 @@ jobs: python -m pip install --upgrade pip pip install codecov pip install pytest-cov - pip install coverage pip install . - name: Run tests run: | pytest --cov=dlordinal --cov-report=xml - codecov: - needs: tests - runs-on: ubuntu-22.04 - - steps: - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v3 # with: # file: /home/runner/work/dlordinal/dlordinal/coverage.xml env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + + # codecov: + # needs: tests + # runs-on: ubuntu-22.04 + + # steps: + # - name: Upload coverage reports to Codecov + # uses: codecov/codecov-action@v3 + # # with: + # # file: /home/runner/work/dlordinal/dlordinal/coverage.xml + # env: + # CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file From 7bc2afebcc389b5b831efb0160e3a4659c7d0923 Mon Sep 17 00:00:00 2001 From: Francisco Berchez Moreno Date: Wed, 22 Nov 2023 13:06:01 +0100 Subject: [PATCH 21/21] Codecov correction #16 --- .github/workflows/run_tests.yml | 40 ++++++++++++++++++++------------- 1 file changed, 25 insertions(+), 15 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 2fa54cc..f6bcd55 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -29,24 +29,34 @@ jobs: pip install . - name: Run tests + run: | + pytest -v + + codecov: + needs: tests + runs-on: ubuntu-22.04 + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: 3.9 + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install codecov + pip install pytest-cov + pip install . + + - name: Run tests for codecov run: | pytest --cov=dlordinal --cov-report=xml - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v3 - # with: - # file: /home/runner/work/dlordinal/dlordinal/coverage.xml env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - - # codecov: - # needs: tests - # runs-on: ubuntu-22.04 - - # steps: - # - name: Upload coverage reports to Codecov - # uses: codecov/codecov-action@v3 - # # with: - # # file: /home/runner/work/dlordinal/dlordinal/coverage.xml - # env: - # CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file