diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ba3e6c..82f1861 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,20 +68,20 @@ jobs: test: needs: skip_duplicate if: ${{ needs.skip_duplicate.outputs.should_skip == 'false' }} - runs-on: ubuntu-latest - strategy: - matrix: - python-version: [ '3.10' ] - steps: - - name: Check out repository code - uses: actions/checkout@v3 - - name: Setup Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: pip install -r requirements.txt && pip install -r requirements-dev.txt - - name: Run test suite - run: coverage run -m py.test - - name: Upload Coverage to Codecov - uses: codecov/codecov-action@v3 + runs-on: ubuntu-latest + strategy: + matrix: + python-version: [ '3.10' ] + steps: + - name: Check out repository code + uses: actions/checkout@v3 + - name: Setup Python ${{ matrix.python-version }} + uses: actions/setup-python@v3 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: pip install -r requirements.txt && pip install -r requirements-dev.txt + - name: Run test suite + run: coverage run -m py.test + - name: Upload Coverage to Codecov + uses: codecov/codecov-action@v3