Fix indentation error on 'test'
This commit is contained in:
34
.github/workflows/ci.yml
vendored
34
.github/workflows/ci.yml
vendored
@@ -68,20 +68,20 @@ jobs:
|
|||||||
test:
|
test:
|
||||||
needs: skip_duplicate
|
needs: skip_duplicate
|
||||||
if: ${{ needs.skip_duplicate.outputs.should_skip == 'false' }}
|
if: ${{ needs.skip_duplicate.outputs.should_skip == 'false' }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: [ '3.10' ]
|
python-version: [ '3.10' ]
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- name: Setup Python ${{ matrix.python-version }}
|
- name: Setup Python ${{ matrix.python-version }}
|
||||||
uses: actions/setup-python@v3
|
uses: actions/setup-python@v3
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: pip install -r requirements.txt && pip install -r requirements-dev.txt
|
run: pip install -r requirements.txt && pip install -r requirements-dev.txt
|
||||||
- name: Run test suite
|
- name: Run test suite
|
||||||
run: coverage run -m py.test
|
run: coverage run -m py.test
|
||||||
- name: Upload Coverage to Codecov
|
- name: Upload Coverage to Codecov
|
||||||
uses: codecov/codecov-action@v3
|
uses: codecov/codecov-action@v3
|
||||||
|
|||||||
Reference in New Issue
Block a user