From e68cd683c11819ada6900cd5ae4e4d5276c3655d Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Sat, 30 Apr 2022 10:00:34 +0100 Subject: [PATCH] Fix indentation error on 'test' --- .github/workflows/ci.yml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) 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