From b949fdf9a1538f98b57612bef6306fc38f32aaf7 Mon Sep 17 00:00:00 2001 From: Andi Albrecht Date: Fri, 14 Apr 2023 14:51:58 +0200 Subject: CI: Use codecov action. codecov module is deprecated and was removed from PyPI in favor of the github action. --- .github/workflows/python-app.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 906ca7e..3033af9 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -30,10 +30,9 @@ jobs: run: | python -m pip install --upgrade pip flit flit install --deps=develop - pip install codecov - name: Lint with flake8 run: flake8 sqlparse --count --max-complexity=31 --show-source --statistics - name: Test with pytest run: pytest --cov=sqlparse - name: Publish to codecov - run: codecov + uses: codecov/codecov-action@v3 -- cgit v1.2.1