From 104a8d1a64bb0798f4d99efe97c8651a3e083771 Mon Sep 17 00:00:00 2001 From: joknarf Date: Thu, 4 Jul 2024 21:35:22 +0200 Subject: [PATCH] Update codecov.yml --- .github/workflows/codecov.yml | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 709738a..8486a78 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -3,19 +3,16 @@ on: [push, pull_request] jobs: run: runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - python-version: ["3.9", "3.10", "3.11"] steps: - - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: pip install -r requirements.txt - - name: Run tests and collect coverage - run: pytest --cov - - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 + - name: Checkout + uses: actions/checkout@v3 + - name: Set up Python 3.10 + uses: actions/setup-python@v4 + with: + python-version: '3.10' + - name: Install dependencies + run: pip install -r requirements.txt + - name: Run tests and collect coverage + run: pytest --cov + - name: Upload coverage to Codecov + uses: codecov/codecov-action@v3