From 0978f5c1759be101f5cffe2e71e13069e39f166e Mon Sep 17 00:00:00 2001 From: Parham Alvani Date: Sun, 10 Mar 2024 05:21:09 +0000 Subject: [PATCH] feat: complete coverage and caching --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fc8c1dd..e62bfe8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,7 @@ jobs: - uses: actions/setup-python@v5 with: python-version: '3.12' + cache: 'pipenv' - run: pip install pipenv - run: pipenv install --dev -v - run: pipenv run coverage run -m pytest @@ -18,4 +19,4 @@ jobs: - run: pipenv run pylint --enable-all-extensions --fail-under 5 app - uses: codecov/codecov-action@v4 with: - files: coverage.out + files: .coverage