From 068d569537d7fea212ec0b60bebb25f5689ba402 Mon Sep 17 00:00:00 2001 From: Maxim Zhiltsov Date: Thu, 28 Mar 2024 14:33:09 +0300 Subject: [PATCH] Update PR checks (#37) --- .github/workflows/health_check.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/health_check.yml b/.github/workflows/health_check.yml index 79b1dd48ea..fd107882b1 100644 --- a/.github/workflows/health_check.yml +++ b/.github/workflows/health_check.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.7', '3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10', '3.11'] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -24,6 +24,6 @@ jobs: pytest -v --cov --cov-report xml:coverage.xml datum -h - name: Sending coverage results - if: matrix.python-version == '3.7' + if: matrix.python-version == '3.8' run: | bash <(curl -Ls https://coverage.codacy.com/get.sh) report -r coverage.xml -t ${{ secrets.CODACY_PROJECT_TOKEN }}