From 6ae128895457f8ee4e2744d9955009b5606c2074 Mon Sep 17 00:00:00 2001 From: Karol Gotkowski Date: Tue, 24 Oct 2023 16:49:57 +0200 Subject: [PATCH] feature: Added codecov --- .github/workflows/test_and_deploy.yml | 5 ++--- patchly/__init__.py | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 510bb3b..e435a0d 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -50,9 +50,8 @@ jobs: - name: Coverage uses: codecov/codecov-action@v3 - with: - file: ./coverage.xml - fail_ci_if_error: false + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} deploy: # this will run when you have tagged a commit, starting with "v*" diff --git a/patchly/__init__.py b/patchly/__init__.py index 345f0d9..0c832bb 100644 --- a/patchly/__init__.py +++ b/patchly/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.6" +__version__ = "0.0.7" from patchly.sampler import GridSampler, SamplingMode from patchly.aggregator import Aggregator